Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -793,7 +793,7 @@ Every row consists of a 24 kHz speech utterance paired with a verified human tra
|
|
| 793 |
```python
|
| 794 |
from datasets import load_dataset, Audio
|
| 795 |
|
| 796 |
-
ds = load_dataset("
|
| 797 |
|
| 798 |
row = ds[0]
|
| 799 |
wav = row["audio"]["array"] # 1-D float32 numpy array, 24 kHz mono
|
|
@@ -806,7 +806,7 @@ dnsmos = row["dnsmos_ovr"]
|
|
| 806 |
### Streaming
|
| 807 |
|
| 808 |
```python
|
| 809 |
-
ds = load_dataset("
|
| 810 |
ds = ds.cast_column("audio", Audio(sampling_rate=24000))
|
| 811 |
for row in ds:
|
| 812 |
wav = row["audio"]["array"]
|
|
@@ -976,7 +976,7 @@ for row in ds:
|
|
| 976 |
author = {},
|
| 977 |
year = {2026},
|
| 978 |
note = {Under review},
|
| 979 |
-
url = {https://huggingface.co/datasets/
|
| 980 |
}
|
| 981 |
```
|
| 982 |
|
|
|
|
| 793 |
```python
|
| 794 |
from datasets import load_dataset, Audio
|
| 795 |
|
| 796 |
+
ds = load_dataset("disco-eth/WorldSpeech", "nl_nl", split="train")
|
| 797 |
|
| 798 |
row = ds[0]
|
| 799 |
wav = row["audio"]["array"] # 1-D float32 numpy array, 24 kHz mono
|
|
|
|
| 806 |
### Streaming
|
| 807 |
|
| 808 |
```python
|
| 809 |
+
ds = load_dataset("disco-eth/WorldSpeech", "nl_nl", split="train", streaming=True)
|
| 810 |
ds = ds.cast_column("audio", Audio(sampling_rate=24000))
|
| 811 |
for row in ds:
|
| 812 |
wav = row["audio"]["array"]
|
|
|
|
| 976 |
author = {},
|
| 977 |
year = {2026},
|
| 978 |
note = {Under review},
|
| 979 |
+
url = {https://huggingface.co/datasets/disco-eth/WorldSpeech}
|
| 980 |
}
|
| 981 |
```
|
| 982 |
|