Not able to download the dataset

#69
by smkhant - opened

I am trying to download the 20231101.hi dataset from Huggning face but encountering Dataset not found Error but the dataset path is correct and it exists on hugging face. I am not sure why this error is encountered. There does not seem any kind of permission issue as well.

Please find below the code and the error encountered and guide me or let me know if I am making any mistake.

It will help me to proceed further. Thanks in advance.

Code used:

from datasets import load_dataset

Load the Hindi Wikipedia dataset

dataset = load_dataset("wikimedia/wikipedia", "20231101.hi", split="train")

Display a sample entry

print(dataset[0])

Error encountered:

---------------------------------------------------------------------------DatasetNotFoundError Traceback (most recent call last) in <cell line: 0>()
2
3 # Load the Hindi Wikipedia dataset
----> 4 dataset = load_dataset("wikimedia/wikipedia", "20231101.hi", split="train")
5
6 # Display a sample entry

3 frames
/usr/local/lib/python3.11/dist-packages/datasets/load.py in dataset_module_factory(path, revision, download_config, download_mode, dynamic_modules_path, data_dir, data_files, cache_dir, trust_remote_code, _require_default_config_name, _require_custom_configs, **download_kwargs)
1643 ) from e
1644 except RepositoryNotFoundError as e:
-> 1645 raise DatasetNotFoundError(f"Dataset '{path}' doesn't exist on the Hub or cannot be accessed.") from e
1646 try:
1647 dataset_script_path = api.hf_hub_download(
DatasetNotFoundError: Dataset 'wikimedia/wikipedia' doesn't exist on the Hub or cannot be accessed.

Sign up or log in to comment