RodrigoLimaRFL commited on
Commit
62ece39
·
verified ·
1 Parent(s): bdfc317

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +48 -3
README.md CHANGED
@@ -1,3 +1,48 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ ---
4
+
5
+ ## How to Load the Dataset
6
+
7
+ There are 2 configurations: **"prosodic"** and **"automatic"**. Below are the parameters for each configuration:
8
+
9
+ ``` python
10
+ prosodic = load_dataset("nilc-nlp/NURC-SP_ENTOA_TTS", name="prosodic", trust_remote_code=True)
11
+ automatic = load_dataset("nilc-nlp/NURC-SP_ENTOA_TTS", name = "automatic", trust_remote_code=True)
12
+ ```
13
+
14
+ ### Prosodic Parameters
15
+ - `"path": datasets.Value("string")`
16
+ - `"name": datasets.Value("string")`
17
+ - `"speaker": datasets.Value("string")`
18
+ - `"start_time": datasets.Value("string")`
19
+ - `"end_time": datasets.Value("string")`
20
+ - `"normalized_text": datasets.Value("string")`
21
+ - `"text": datasets.Value("string")`
22
+ - `"duration": datasets.Value("string")`
23
+ - `"type": datasets.Value("string")`
24
+ - `"year": datasets.Value("string")`
25
+ - `"gender": datasets.Value("string")`
26
+ - `"age_range": datasets.Value("string")`
27
+ - `"total_duration": datasets.Value("string")`
28
+ - `"quality": datasets.Value("string")`
29
+ - `"theme": datasets.Value("string")`
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)`