Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -49,7 +49,7 @@ It contains **only the test split** and is intended for **automatic speech recog
|
|
| 49 |
- **Split:** Test only
|
| 50 |
- **Speakers:** ~30 native speakers
|
| 51 |
- **Content:**
|
| 52 |
-
- `
|
| 53 |
- `speaker`: anonymized speaker ID (SHA-256 hash)
|
| 54 |
- `kurdish`: transcription in Northern Kurdish
|
| 55 |
- `english`: English translation
|
|
@@ -76,7 +76,7 @@ ds = load_dataset("aranemini/kmr-tatoeba", split="test")
|
|
| 76 |
# Example access
|
| 77 |
print(ds[0]['kurdish'])
|
| 78 |
print(ds[0]['english'])
|
| 79 |
-
audio_data = ds[0]['
|
| 80 |
```
|
| 81 |
---
|
| 82 |
|
|
|
|
| 49 |
- **Split:** Test only
|
| 50 |
- **Speakers:** ~30 native speakers
|
| 51 |
- **Content:**
|
| 52 |
+
- `audio`: recorded sentence (`.wav`, 48 kHz mono)
|
| 53 |
- `speaker`: anonymized speaker ID (SHA-256 hash)
|
| 54 |
- `kurdish`: transcription in Northern Kurdish
|
| 55 |
- `english`: English translation
|
|
|
|
| 76 |
# Example access
|
| 77 |
print(ds[0]['kurdish'])
|
| 78 |
print(ds[0]['english'])
|
| 79 |
+
audio_data = ds[0]['audio'] # dict with audio array & sampling rate
|
| 80 |
```
|
| 81 |
---
|
| 82 |
|