Update README.md
Browse files
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 |
|