ahnafsamin commited on
Commit
643bb12
·
verified ·
1 Parent(s): 7328d72

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +10 -11
README.md CHANGED
@@ -80,7 +80,7 @@ tags:
80
  - **Repository:** [Needs More Information]
81
  - **Paper:** [Bangladeshi Bangla speech corpus for automatic speech recognition research](https://www.sciencedirect.com/science/article/abs/pii/S0167639321001370)
82
  - **Leaderboard:** [Needs More Information]
83
- - **Point of Contact:** [A. M. Samin](mailto:asamin9796@gmail.com)
84
 
85
  ### Dataset Summary
86
 
@@ -108,26 +108,25 @@ Bangladeshi standard Bangla
108
 
109
  ### Data Instances
110
 
111
- A typical data point comprises the path to the audio file, called `path` and its transcription, called `sentence`. Some additional information about the speaker and the passage which contains the transcription is provided.
112
 
113
  ```
114
- {'speaker_id': 'VIVOSSPK01',
115
- 'path': '/home/admin/.cache/huggingface/datasets/downloads/extracted/b7ded9969e09942ab65313e691e6fc2e12066192ee8527e21d634aca128afbe2/vivos/train/waves/VIVOSSPK01/VIVOSSPK01_R001.wav',
116
- 'audio': {'path': '/home/admin/.cache/huggingface/datasets/downloads/extracted/b7ded9969e09942ab65313e691e6fc2e12066192ee8527e21d634aca128afbe2/vivos/train/waves/VIVOSSPK01/VIVOSSPK01_R001.wav',
117
  'array': array([-0.00048828, -0.00018311, -0.00137329, ..., 0.00079346, 0.00091553, 0.00085449], dtype=float32),
118
  'sampling_rate': 16000},
119
- 'sentence': 'KHÁCH SẠN'}
 
 
120
  ```
121
 
122
  ### Data Fields
123
 
124
- - speaker_id: An id for which speaker (voice) made the recording
125
-
126
- - path: The path to the audio file
127
 
128
- - audio: A dictionary containing the path to the downloaded audio file, the decoded audio array, and the sampling rate. Note that when accessing the audio column: `dataset[0]["audio"]` the audio file is automatically decoded and resampled to `dataset.features["audio"].sampling_rate`. Decoding and resampling of a large number of audio files might take a significant amount of time. Thus it is important to first query the sample index before the `"audio"` column, *i.e.* `dataset[0]["audio"]` should **always** be preferred over `dataset["audio"][0]`.
129
 
130
- - sentence: The sentence the user was prompted to speak
131
 
132
  ### Data Splits
133
 
 
80
  - **Repository:** [Needs More Information]
81
  - **Paper:** [Bangladeshi Bangla speech corpus for automatic speech recognition research](https://www.sciencedirect.com/science/article/abs/pii/S0167639321001370)
82
  - **Leaderboard:** [Needs More Information]
83
+ - **Point of Contact:** [M. Shahidur Rahman](mailto:rahmanms@sust.edu)
84
 
85
  ### Dataset Summary
86
 
 
108
 
109
  ### Data Instances
110
 
111
+ A typical data point comprises the path to the audio file and its transcription.
112
 
113
  ```
114
+ {
115
+ 'audio': {'path': '/home/username/subakko/part5/wav5/e4/TNM22_MESBA_page_257-258_5_5_Labeled_by_Tomal-20.wav',
 
116
  'array': array([-0.00048828, -0.00018311, -0.00137329, ..., 0.00079346, 0.00091553, 0.00085449], dtype=float32),
117
  'sampling_rate': 16000},
118
+ 'transcript': 'তারপর চার মাস তিনি ছিলেন কেন্দ্রীয় গোয়েন্দা সংস্থার তত্বাবধানে এক নিরাপদ জায়গায়',
119
+ 'path': '/subakko/part5/wav5/e4/TNM22_MESBA_page_257-258_5_5_Labeled_by_Tomal-20.wav'
120
+ }
121
  ```
122
 
123
  ### Data Fields
124
 
125
+ - audio: A dictionary containing the path to the original audio file, the decoded audio array, and the sampling rate. Note that when accessing the audio column: `dataset[0]["audio"]` the audio file is automatically decoded and resampled to `dataset.features["audio"].sampling_rate`. Decoding and resampling of a large number of audio files might take a significant amount of time. Thus it is important to first query the sample index before the `"audio"` column, *i.e.* `dataset[0]["audio"]` should **always** be preferred over `dataset["audio"][0]`.
 
 
126
 
127
+ - transcription: The orthographic transcription
128
 
129
+ - file_path: The relative path to the audio file
130
 
131
  ### Data Splits
132