Update README to use 'transcript' field instead of 'text'.

#18
by deepdml - opened
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -502,7 +502,7 @@ A typical data point comprises the path to the audio file, usually called `file`
502
  'array': array([-1.52587891e-04, 6.10351562e-05, 0.00000000e+00, ...,
503
  4.27246094e-04, 5.49316406e-04, 4.57763672e-04]),
504
  'sampling_rate': 16000},
505
- 'text': 'więc czego chcecie odemnie spytałem wysłuchawszy tego zadziwiającego opowiadania broń nas stary człowieku broń zakrzyknęli równocześnie obaj posłowie\n',
506
  'speaker_id': 10900,
507
  'chapter_id': 6473,
508
  'id': '10900_6473_000030'}
@@ -515,7 +515,7 @@ A typical data point comprises the path to the audio file, usually called `file`
515
 
516
  - audio: A dictionary containing the audio filename, 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]`.
517
 
518
- - text: the transcription of the audio file.
519
 
520
  - id: unique id of the data sample.
521
 
 
502
  'array': array([-1.52587891e-04, 6.10351562e-05, 0.00000000e+00, ...,
503
  4.27246094e-04, 5.49316406e-04, 4.57763672e-04]),
504
  'sampling_rate': 16000},
505
+ 'transcript': 'więc czego chcecie odemnie spytałem wysłuchawszy tego zadziwiającego opowiadania broń nas stary człowieku broń zakrzyknęli równocześnie obaj posłowie\n',
506
  'speaker_id': 10900,
507
  'chapter_id': 6473,
508
  'id': '10900_6473_000030'}
 
515
 
516
  - audio: A dictionary containing the audio filename, 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]`.
517
 
518
+ - transcript: the transcription of the audio file.
519
 
520
  - id: unique id of the data sample.
521