Datasets:

Languages:
code
Multilinguality:
multilingual
Size Categories:
unknown
ArXiv:
Tags:
License:

Unable to access specific languages

#2
by tehranixyz - opened

Hi,
I'm not able to access data of specific languages.
ds = load_dataset("bigcode/the-stack-v2-dedup", data_dir="data/Dockerfile", streaming=True, split="train") raises FileNotFoundError.
I tried different languages (AL, C++), the same error was raised.
However, accessing the whole dataset works fine without any issues.
For example:
ds = load_dataset("bigcode/the-stack-v2-dedup", streaming=True, split="train")
works perfectly.
Any help is appreciated.

BigCode org
edited Mar 1

Hi @tehranixyz @songdemin ! A bit of misconfiguration on our end, everything should work now :)

I want to mention that this issue still exists for the dedup dataset. However, the original dataset (without dedup) works well.

BigCode org

@tehranixyz can you try with load_dataset("bigcode/the-stack-v2-dedup", "Dockerfile", split="train", streaming=True)? (i.e. using the directory name Dockerfile as the dataset config name)

Thanks for the suggestion. It is working now.

Sign up or log in to comment