Datasets:
Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language: vi
|
| 3 |
+
license: other
|
| 4 |
+
tags:
|
| 5 |
+
- tts
|
| 6 |
+
- vietnamese
|
| 7 |
+
- audio
|
| 8 |
+
- speech-dataset
|
| 9 |
+
pretty_name: Vietnamese TTS Multi-Project Dataset
|
| 10 |
+
task_categories:
|
| 11 |
+
- text-to-speech
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
+
# Vietnamese TTS Multi-Project Dataset
|
| 15 |
+
|
| 16 |
+
A comprehensive Vietnamese Text-to-Speech (TTS) dataset comprising 118GB of high-quality audio recordings and aligned transcripts from multiple narrative literature projects.
|
| 17 |
+
|
| 18 |
+
## Dataset Structure
|
| 19 |
+
|
| 20 |
+
The data is organized into three main projects, matching the original folder structure for portability:
|
| 21 |
+
|
| 22 |
+
### 1. **The Gioi Hoan My (Thế Giới Hoàn Mỹ)**
|
| 23 |
+
- **Archives**: `the_gioi_hoan_my.tar.zst` (Split into parts due to size).
|
| 24 |
+
- **Metadata**: Includes aligned transcripts, scores, and training/validation splits.
|
| 25 |
+
|
| 26 |
+
### 2. **An Sat (Án Sát)**
|
| 27 |
+
- **Archives**: `an_sat.tar.zst`
|
| 28 |
+
- **Metadata**: Aligned CSV files and training text.
|
| 29 |
+
|
| 30 |
+
### 3. **Ngao The Cuu Trong Thien (Ngạo Thế Cửu Trọng Thiên)**
|
| 31 |
+
- **Archives**: `Ngao_The_Cuu_Trong_Thien_Phong_Lang_Thien_Ha_mono22050.tar.zst` (Split into parts).
|
| 32 |
+
- **Metadata**: Processed mono (22.05kHz) scripts and scoring metadata.
|
| 33 |
+
|
| 34 |
+
## File Reassembly Instructions
|
| 35 |
+
|
| 36 |
+
Due to Hugging Face's 50GB individual file limit, some large archives have been split into multiple parts. Please reassemble them using the following command after downloading:
|
| 37 |
+
|
| 38 |
+
```bash
|
| 39 |
+
# For The Gioi Hoan My
|
| 40 |
+
cat the_gioi_hoan_my.tar.zst.part_* > the_gioi_hoan_my.tar.zst
|
| 41 |
+
|
| 42 |
+
# For Ngao The Cuu Trong Thien
|
| 43 |
+
cat Ngao_The_Cuu_Trong_Thien_Phong_Lang_Thien_Ha_mono22050.tar.zst.part_* > Ngao_The_Cuu_Trong_Thien_Phong_Lang_Thien_Ha_mono22050.tar.zst
|
| 44 |
+
```
|
| 45 |
+
|
| 46 |
+
After reassembling, you can decompress the `.tar.zst` files using:
|
| 47 |
+
```bash
|
| 48 |
+
tar --use-compress-program=zstd -xvf <filename>.tar.zst
|
| 49 |
+
```
|
| 50 |
+
|
| 51 |
+
## Metadata Format
|
| 52 |
+
|
| 53 |
+
All `metadata_aligned.csv` files follow the standard TTS format (LJSpeech style):
|
| 54 |
+
`wav_path | transcript`
|
| 55 |
+
|
| 56 |
+
Example:
|
| 57 |
+
`wavs/001_1003_1012.wav|sát khí khôn cùng ùn ùn kéo đến bắn ra mãnh liệt!`
|
| 58 |
+
|
| 59 |
+
---
|
| 60 |
+
**Maintenance**: Managed by [Cong123779](https://huggingface.co/Cong123779).
|