cosmetics changes in README.md
Browse files
README.md
CHANGED
@@ -103,9 +103,13 @@ A typical data point comprises the `path` to the audio file and its `sentence`.
|
|
103 |
|
104 |
### Data Fields
|
105 |
`path` (`string`): The path to the audio file
|
|
|
106 |
`language` (`string`): The language of the audio file
|
|
|
107 |
`reader` (`string`): The reader Id in LibriVox
|
|
|
108 |
`sentence` (`string`): The sentence the user was prompted to speak
|
|
|
109 |
`audio` (`dict`): 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]`.
|
110 |
|
111 |
### Data Splits
|
|
|
103 |
|
104 |
### Data Fields
|
105 |
`path` (`string`): The path to the audio file
|
106 |
+
|
107 |
`language` (`string`): The language of the audio file
|
108 |
+
|
109 |
`reader` (`string`): The reader Id in LibriVox
|
110 |
+
|
111 |
`sentence` (`string`): The sentence the user was prompted to speak
|
112 |
+
|
113 |
`audio` (`dict`): 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]`.
|
114 |
|
115 |
### Data Splits
|