Downloading issue

#1
by muzaffercky - opened

I could not download it with the following script

from datasets import load_dataset

# Stream without downloading everything at once (recommended for very large corpora)
ds = load_dataset("abdulhade/Kurdishcorpus", split="train", streaming=True)

for i, ex in enumerate(ds.take(5)):
    print(ex["text"])

Sign up or log in to comment