Datasets:

Modalities:
Audio
Text
Formats:
parquet
ArXiv:
Libraries:
Datasets
Dask
License:
tahirjm commited on
Commit
8815e80
·
verified ·
1 Parent(s): dc7cfef

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -1376,7 +1376,7 @@ To load the dataset, run:
1376
  ```python
1377
  from datasets import load_dataset
1378
  # Load the dataset from the HuggingFace Hub
1379
- dataset = load_dataset("ai4bharat/IndicVoices","assamese","valid")
1380
  # Check the dataset structure
1381
  print(dataset)
1382
  ```
@@ -1385,7 +1385,7 @@ You can also stream the dataset by enabling the `streaming=True` flag:
1385
 
1386
  ```python
1387
  from datasets import load_dataset
1388
- dataset = load_dataset("ai4bharat/IndicVoices","assamese","valid", streaming=True)
1389
  print(next(iter(dataset)))
1390
  ```
1391
 
 
1376
  ```python
1377
  from datasets import load_dataset
1378
  # Load the dataset from the HuggingFace Hub
1379
+ dataset = load_dataset("ai4bharat/IndicVoices","assamese",split="valid")
1380
  # Check the dataset structure
1381
  print(dataset)
1382
  ```
 
1385
 
1386
  ```python
1387
  from datasets import load_dataset
1388
+ dataset = load_dataset("ai4bharat/IndicVoices","assamese",split="valid", streaming=True)
1389
  print(next(iter(dataset)))
1390
  ```
1391