--- size_categories: - 1Ktokens and grab your token ``` ```python from datasets import load_dataset from huggingface_hub.utils import _runtime _runtime._is_google_colab = False # workaround for problems with colab repo_id = "lowres/aiohto" # 👈 change this ds = load_dataset("lowres/anime") ds2 = load_dataset(repo_id) character_name = repo_id.split("/")[1] ds[character_name] = ds["train"] ds.push_to_hub("lowres/anime") ```