aranemini commited on
Commit
2dbe946
·
verified ·
1 Parent(s): 6ec8a27

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
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
- - `file_name`: 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,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]['file_name'] # dict with audio array & sampling rate
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