Updated README.md
Browse files
README.md
CHANGED
@@ -128,7 +128,7 @@ Additional fields include `accent`, `client_id`, `locale` and `segment`.
|
|
128 |
|
129 |
`path` (`string`): The path to the audio file
|
130 |
|
131 |
-
`audio` (`
|
132 |
Note that when accessing the audio column: dataset[0]["audio"] the audio file is automatically decoded and resampled to dataset.features["audio"].sampling_rate.
|
133 |
Decoding and resampling of a large number of audio files might take a significant amount of time.
|
134 |
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]
|
|
|
128 |
|
129 |
`path` (`string`): The path to the audio file
|
130 |
|
131 |
+
`audio` (`dict`): A dictionary containing the path to the downloaded audio file, the decoded audio array, and the sampling rate.
|
132 |
Note that when accessing the audio column: dataset[0]["audio"] the audio file is automatically decoded and resampled to dataset.features["audio"].sampling_rate.
|
133 |
Decoding and resampling of a large number of audio files might take a significant amount of time.
|
134 |
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]
|