Datasets:

Modalities:
Image
Text
Formats:
parquet
Tags:
art
Libraries:
Datasets
Dask
not-lain commited on
Commit
8b30365
·
1 Parent(s): b0e293f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -7
README.md CHANGED
@@ -52,7 +52,7 @@ The dataset is open source to use without limitations or any restrictions.
52
  from datasets import load_dataset
53
  from huggingface_hub.utils import _runtime
54
  _runtime._is_google_colab = False # workaround for problems with colab
55
- dataset = load_dataset("parsee-mizuhashi/miku")
56
  ```
57
 
58
  ## how to contribute
@@ -66,13 +66,10 @@ notebook_login() # 👈 add your token with "writing access"
66
  ```
67
  ```python
68
  from datasets import load_dataset
69
- from huggingface_hub.utils import _runtime
70
- _runtime._is_google_colab = False # workaround for problems with colab
71
  repo_id = "lowres/ai-ohto" # 👈 change this
72
- ds = load_dataset("lowres/anime")
73
- ds2 = load_dataset(repo_id)
74
  character_name = repo_id.split("/")[1]
75
  character_name = character_name.replace("-","")
76
- ds[character_name] = ds2["train"]
77
- ds.push_to_hub("lowres/anime")
78
  ```
 
52
  from datasets import load_dataset
53
  from huggingface_hub.utils import _runtime
54
  _runtime._is_google_colab = False # workaround for problems with colab
55
+ dataset = load_dataset("lowres/anime")
56
  ```
57
 
58
  ## how to contribute
 
66
  ```
67
  ```python
68
  from datasets import load_dataset
 
 
69
  repo_id = "lowres/ai-ohto" # 👈 change this
70
+ ds = load_dataset(repo_id)
 
71
  character_name = repo_id.split("/")[1]
72
  character_name = character_name.replace("-","")
73
+ # rename column (TODO)
74
+ ds.push_to_hub("lowres/anime",split=character_name)
75
  ```