Make the dataset streamable

#6
by lhoestq HF Staff - opened

This way people can do

from datasets import load_dataset

ds = load_dataset("csebuetnlp/xlsum", "french", streaming=True)
for example in ds["train"]:
    ...

without downloading the full dataset

lhoestq changed pull request status to closed

Sign up or log in to comment