SatishFaction commited on
Commit
929cc6c
·
verified ·
1 Parent(s): e3bf715

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -5
README.md CHANGED
@@ -21,10 +21,7 @@ dataset = load_dataset("PrathamOrgAI/ReadNet")
21
 
22
  ### Data Fields
23
 
24
- - file: A path to the downloaded audio file in .flac format.
25
 
26
- - 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]`.
27
 
28
- - text: the transcription of the audio file.
29
-
30
- - id: unique id of the data sample.
 
21
 
22
  ### Data Fields
23
 
24
+ - URL: URL of the audio file which can be downloaded in the .wav format
25
 
26
+ - Transcribed Text: Transcription of audio files in their respective language
27