Update README.md
Browse files
README.md
CHANGED
@@ -8,12 +8,13 @@ language:
|
|
8 |
|
9 |
## How to Load the Dataset
|
10 |
|
11 |
-
There are
|
12 |
|
13 |
``` python
|
14 |
prosodic = load_dataset("nilc-nlp/NURC-SP_ENTOA_TTS", name="prosodic", trust_remote_code=True)
|
15 |
automatic = load_dataset("nilc-nlp/NURC-SP_ENTOA_TTS", name = "automatic", trust_remote_code=True)
|
16 |
audioCorpus = load_dataset("nilc-nlp/NURC-SP_ENTOA_TTS", name = "audioCorpus", trust_remote_code=True)
|
|
|
17 |
```
|
18 |
|
19 |
## Parameters of each configuration
|
@@ -61,4 +62,14 @@ audioCorpus = load_dataset("nilc-nlp/NURC-SP_ENTOA_TTS", name = "audioCorpus", t
|
|
61 |
- 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.
|
62 |
- 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.
|
63 |
- 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.
|
64 |
-
- 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.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
|
9 |
## How to Load the Dataset
|
10 |
|
11 |
+
There are 4 configurations: **"prosodic"**, **"automatic"**, **"audioCorpus"** and **test**. To load the dataset with the HuggingFace *datasets* library, use the following code:
|
12 |
|
13 |
``` python
|
14 |
prosodic = load_dataset("nilc-nlp/NURC-SP_ENTOA_TTS", name="prosodic", trust_remote_code=True)
|
15 |
automatic = load_dataset("nilc-nlp/NURC-SP_ENTOA_TTS", name = "automatic", trust_remote_code=True)
|
16 |
audioCorpus = load_dataset("nilc-nlp/NURC-SP_ENTOA_TTS", name = "audioCorpus", trust_remote_code=True)
|
17 |
+
test = load_dataset("nilc-nlp/NURC-SP_ENTOA_TTS", name="test", trust_remote_code=True)
|
18 |
```
|
19 |
|
20 |
## Parameters of each configuration
|
|
|
62 |
- 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.
|
63 |
- 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.
|
64 |
- 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.
|
65 |
+
- 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.
|
66 |
+
|
67 |
+
### Test Parameters
|
68 |
+
- path: The path to the audio file.
|
69 |
+
- name: The name of the original audio.
|
70 |
+
- speaker: 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.
|
71 |
+
- start_time: The time the audio segment starts in the original source in seconds.
|
72 |
+
- end_time: The time the audio segment ends in the original source in seconds.
|
73 |
+
- text: The automatic trancription for the given audio.
|
74 |
+
- duration: The duration of the audio segment in seconds * 16000 (sampling rate).
|
75 |
+
- audio: The audio data of the segment.
|