Datasets:
Update README.md
Browse files
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/
|
| 72 |
ds = load_dataset("lowres/anime")
|
| 73 |
ds2 = load_dataset(repo_id)
|
| 74 |
character_name = repo_id.split("/")[1]
|
| 75 |
-
|
|
|
|
| 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 |
```
|