File size: 1,750 Bytes
62ece39 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
---
license: mit
---
## How to Load the Dataset
There are 2 configurations: **"prosodic"** and **"automatic"**. Below are the parameters for each configuration:
``` python
prosodic = load_dataset("nilc-nlp/NURC-SP_ENTOA_TTS", name="prosodic", trust_remote_code=True)
automatic = load_dataset("nilc-nlp/NURC-SP_ENTOA_TTS", name = "automatic", trust_remote_code=True)
```
### Prosodic Parameters
- `"path": datasets.Value("string")`
- `"name": datasets.Value("string")`
- `"speaker": datasets.Value("string")`
- `"start_time": datasets.Value("string")`
- `"end_time": datasets.Value("string")`
- `"normalized_text": datasets.Value("string")`
- `"text": datasets.Value("string")`
- `"duration": datasets.Value("string")`
- `"type": datasets.Value("string")`
- `"year": datasets.Value("string")`
- `"gender": datasets.Value("string")`
- `"age_range": datasets.Value("string")`
- `"total_duration": datasets.Value("string")`
- `"quality": datasets.Value("string")`
- `"theme": datasets.Value("string")`
- `"audio": datasets.Audio(sampling_rate=16_000)`
### Automatic Parameters
- `"audio_name": datasets.Value("string")`
- `"file_path": datasets.Value("string")`
- `"text": datasets.Value("string")`
- `"start_time": datasets.Value("string")`
- `"end_time": datasets.Value("string")`
- `"duration": datasets.Value("string")`
- `"quality": datasets.Value("string")`
- `"speech_genre": datasets.Value("string")`
- `"speech_style": datasets.Value("string")`
- `"variety": datasets.Value("string")`
- `"accent": datasets.Value("string")`
- `"sex": datasets.Value("string")`
- `"age_range": datasets.Value("string")`
- `"num_speakers": datasets.Value("string")`
- `"speaker_id": datasets.Value("string")`
- `"audio": datasets.Audio(sampling_rate=16_000)`
|