Datasets:

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

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -2
README.md CHANGED
@@ -68,10 +68,11 @@ notebook_login() # 👈 add your token with "writing access"
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/aiohto" # 👈 change this
72
  ds = load_dataset("lowres/anime")
73
  ds2 = load_dataset(repo_id)
74
  character_name = repo_id.split("/")[1]
75
- ds[character_name] = ds["train"]
 
76
  ds.push_to_hub("lowres/anime")
77
  ```
 
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
  ```