File size: 295 Bytes
58b6cbc |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
from datasets import Dataset, DatasetDict, DatasetInfo
from huggingface_hub import HfApi, create_repo
# If the repo doesn't exist yet, create it
dataset_repo_name = "AniSundar18/Robust_LDM_Benchmark"
#create_repo(dataset_repo_name)
# Push the dataset
dataset.push_to_hub(dataset_repo_name)
|