Update README.md
Browse files
README.md
CHANGED
@@ -56,4 +56,13 @@ size_categories:
|
|
56 |
**What's new**<br>
|
57 |
*The data is clean from all columns except for the file_path and phrase<br>
|
58 |
*All Audios are loaded into the DatasetDict as an 1D array, float32<br>
|
59 |
-
*All Audios are resampled into 16K<br>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
56 |
**What's new**<br>
|
57 |
*The data is clean from all columns except for the file_path and phrase<br>
|
58 |
*All Audios are loaded into the DatasetDict as an 1D array, float32<br>
|
59 |
+
*All Audios are resampled into 16K<br>
|
60 |
+
*The new structure :
|
61 |
+
train = {
|
62 |
+
'audio': {
|
63 |
+
'path': file_path, *the mp3 files is not included here, please visit the kaggle to dowload em*
|
64 |
+
'array': waveform_np,
|
65 |
+
'sampling_rate': 16000
|
66 |
+
},
|
67 |
+
'sentence': row['phrase']
|
68 |
+
}
|