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