RodrigoLimaRFL commited on
Commit
dab90be
·
verified ·
1 Parent(s): 6276385

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +15 -16
README.md CHANGED
@@ -30,19 +30,18 @@ automatic = load_dataset("nilc-nlp/NURC-SP_ENTOA_TTS", name = "automatic", trust
30
  - `"audio": datasets.Audio(sampling_rate=16_000)`
31
 
32
  ### Automatic Parameters
33
- - `"audio_name": datasets.Value("string")`
34
- - `"file_path": datasets.Value("string")`
35
- - `"text": datasets.Value("string")`
36
- - `"start_time": datasets.Value("string")`
37
- - `"end_time": datasets.Value("string")`
38
- - `"duration": datasets.Value("string")`
39
- - `"quality": datasets.Value("string")`
40
- - `"speech_genre": datasets.Value("string")`
41
- - `"speech_style": datasets.Value("string")`
42
- - `"variety": datasets.Value("string")`
43
- - `"accent": datasets.Value("string")`
44
- - `"sex": datasets.Value("string")`
45
- - `"age_range": datasets.Value("string")`
46
- - `"num_speakers": datasets.Value("string")`
47
- - `"speaker_id": datasets.Value("string")`
48
- - `"audio": datasets.Audio(sampling_rate=16_000)`
 
30
  - `"audio": datasets.Audio(sampling_rate=16_000)`
31
 
32
  ### Automatic Parameters
33
+ - audio_name: The name given to the audio in the database. All audios extracted from the same source have the same name.
34
+ - file_path: The path to the audio file.
35
+ - text: The human-verified trancription for the given audio.
36
+ - start_time: The time the audio segment starts in the original source in seconds.
37
+ - end_time: The time the audio segment ends in the original source in seconds.
38
+ - duration: The duration of the audio segment in seconds.
39
+ - quality: Whether or not the audio had parts that could not be transcribed properly. Audios without this characteristic are rated 'high' and audios with it are rated 'low'.
40
+ - speech_genre: The speech genre of the original source of the segment. Divided into 'dialogue', 'interview' or 'lecture and talks'.
41
+ - speech_style: The speech style of the original source of the segment. All segments are categorized as 'spontaneous speech'.
42
+ - variety: The audio language. All segments are categorized as 'pt-br'.
43
+ - accent: The speaker's accent. All segments are categorized as 'sp-city'. Note that some audio sources have more than one speaker, so in that case the accent refers to the main speaker or speakers.
44
+ - sex: The speaker's sex. Divided into 'F', 'M', 'F e F', 'F e M' and 'M e M' ('F' stands for female and 'M' stands for male). Note that some audio sources have more than one speaker, so in that case the sex refers to the main speaker or speakers.
45
+ - age_range: The speaker's age range. Divided into 'I' (25 to 35), 'II' (36 to 55) and 'III' (over 55). Note that some audio sources have more than one speaker, so in that case the age range refers to the main speaker or speakers.
46
+ - num_speakers: The number of speakers in the original source of the segment. This field was automatically writter by WhisperX, so it might not be accurate.
47
+ - speaker_id: The speaker in the segment (each different speaker in the original source was given an integer id). This field was automatically writter by WhisperX, so it might not be accurate.