Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -56,9 +56,10 @@ The goal is to provide a *turn-key* dataset for
|
|
| 56 |
|
| 57 |
```python
|
| 58 |
from datasets import load_dataset
|
| 59 |
-
|
| 60 |
-
|
| 61 |
-
|
|
|
|
| 62 |
```
|
| 63 |
|
| 64 |
---
|
|
|
|
| 56 |
|
| 57 |
```python
|
| 58 |
from datasets import load_dataset
|
| 59 |
+
|
| 60 |
+
ds_train = load_dataset("srinathnr/TTS_DATASET", split="train", trust_remote_code=True, streaming=True)
|
| 61 |
+
ds_val = load_dataset("srinathnr/TTS_DATASET", split="validation", trust_remote_code=True, streaming=True)
|
| 62 |
+
ds_test = load_dataset("srinathnr/TTS_DATASET", split="test", trust_remote_code=True, streaming=True)
|
| 63 |
```
|
| 64 |
|
| 65 |
---
|