Issue : Dataset "doesn't exist on the Hub"
#1
by
RomanCast
- opened
For some reason, I cannot download the dataset anymore (although it was working perfectly fine before), it seems the dataset is not found on the Hub :
>>> ds = load_dataset("oscar-corpus/OSCAR-2109", "deduplicated_br")
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/home/miniconda3/envs/my_env/lib/python3.9/site-packages/datasets/load.py", line 1723, in load_dataset
builder_instance = load_dataset_builder(
File "/home/miniconda3/envs/my_env/lib/python3.9/site-packages/datasets/load.py", line 1500, in load_dataset_builder
dataset_module = dataset_module_factory(
File "/home/miniconda3/envs/my_env/lib/python3.9/site-packages/datasets/load.py", line 1243, in dataset_module_factory
raise FileNotFoundError(
FileNotFoundError: Couldn't find a dataset script at <current_path>/oscar-corpus/OSCAR-2109/OSCAR-2109.py or any data file in the same directory. Couldn't find 'oscar-corpus/OSCAR-2109' on the Hugging Face Hub either: FileNotFoundError: Dataset 'oscar-corpus/OSCAR-2109' doesn't exist on the Hub. If the repo is private, make sure you are authenticated with `use_auth_token=True` after logging in with `huggingface-cli login`.
I can still download other datasets. Any idea why this one went missing ?
Thanks
Hello!
Have you specified use_auth_token=True
in the load_dataset
arguments?
Ah that was it, thanks !
RomanCast
changed discussion status to
closed