Datasets:
Using the Corpus
load_dataset('oscar-corpus/OSCAR-2201') is not found..
Hello!
You have to provide a language code to get the appropriate corpus. The error message coming from datasets should come in handy to find out the one you need.
Example of usage:
`load_dataset('oscar-2201', 'af')`
You may also have to use use_auth_token=True
in the load_dataset
parameters, since this is a dataset that requires auth.
Let me know if you still experience problems :)
Unfortinatly, this example returns an error:
"FileNotFoundError: Couldn't find a dataset script at .../oscar-2201/oscar-2201.py or any data file in the same directory. Couldn't find 'oscar-2201' on the Hugging Face Hub either: FileNotFoundError: Couldn't find file at https://raw.githubusercontent.com/huggingface/datasets/master/datasets/oscar-2201/oscar-2201.py
I had to use the appropriate token for use_auth_token. Thank you.