Datasets:

Modalities:
Tabular
Text
Formats:
parquet
Languages:
English
ArXiv:
Libraries:
Datasets
Dask
License:
lhoestq HF Staff commited on
Commit
af362f9
·
verified ·
1 Parent(s): 3c4f561

stream -> streaming in code example

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -62,7 +62,7 @@ You can use this fact to, e.g., only load the nearest neighbor to each caption l
62
  from datasets import load_dataset
63
 
64
  # Full dataset (it's 15GB so perhaps best to stream)
65
- ds = load_dataset("encord-team/E-MM1-100M", split="train", stream=True)
66
 
67
  # Load just the nearest neighbor
68
  ds = load_dataset("encord-team/E-MM1-100M", split="train", data_files=["data/nn_01.parquet"])
 
62
  from datasets import load_dataset
63
 
64
  # Full dataset (it's 15GB so perhaps best to stream)
65
+ ds = load_dataset("encord-team/E-MM1-100M", split="train", streaming=True)
66
 
67
  # Load just the nearest neighbor
68
  ds = load_dataset("encord-team/E-MM1-100M", split="train", data_files=["data/nn_01.parquet"])