XXH333 commited on
Commit
3236e1e
·
verified ·
1 Parent(s): 2d74406

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +19 -55
README.md CHANGED
@@ -1,25 +1,4 @@
1
- ---
2
- license: apache-2.0
3
- ---
4
- ---
5
- language:
6
- - zh
7
- - en
8
- task_categories:
9
- - text-to-speech
10
- - audio-to-audio
11
- tags:
12
- - speech
13
- - prosody
14
- - controllable-tts
15
- - alignment
16
- - word-level
17
- size_categories:
18
- - 10M<n<100M
19
- license: cc-by-nc-4.0
20
- ---
21
-
22
- # Dataset Card for WordVoice-5A
23
 
24
  ## Dataset Description / 数据集简介
25
 
@@ -35,13 +14,11 @@ WordVoice-5A 数据集包含约 4,684 小时的高质量语音数据(中文 2,
35
 
36
  - **可控语音合成 (Controllable TTS)**:训练支持字级声学属性显式控制的 TTS 模型。
37
  - **韵律建模 (Prosody Modeling)**:研究中英双语在连续语流中的微观韵律与协同发音规律。
38
- - **细粒度声学对齐 (Fine-grained Alignment)**:为多模态对齐(如数字人唇形同步)提供高精度的字级时间戳。
39
 
40
  The WordVoice-5A dataset contains approximately 4,684 hours of high-quality speech data (2,546 hours of Mandarin, 2,138 hours of English), encompassing over 52 million character/word-level annotations. Derived from the open-source LEMAS dataset and refined through rigorous dual-model cross-validation and cleansing, it is specifically designed for:
41
 
42
  - **Controllable TTS**: Training TTS models that support explicit word-level acoustic control.
43
  - **Prosody Modeling**: Researching micro-prosody and coarticulation patterns in continuous bilingual speech.
44
- - **Fine-grained Alignment**: Providing high-precision word-level timestamps for cross-modal alignment (e.g., lip-sync for digital avatars).
45
 
46
  ---
47
 
@@ -60,35 +37,22 @@ The WordVoice-5A dataset contains approximately 4,684 hours of high-quality spee
60
 
61
  ---
62
 
63
- ## Data Structure / 数据结构
64
-
65
- 每条数据样本包含音频文件以及对应的字级多维属性列表。数据格式示例如下:
66
- Each data instance contains the audio file and a list of word-level multi-dimensional attributes. An example of the data structure is as follows:
67
-
68
- ```json
69
- {
70
- "audio_id": "zh_00001",
71
- "audio_path": "wavs/zh_00001.wav",
72
- "text": "你好世界",
73
- "word_level_annotations": [
74
- {
75
- "word": "你",
76
- "timestamp": [0.12, 0.35],
77
- "duration": 0.23,
78
- "boundary": "b1",
79
- "energy": 0.75,
80
- "pitch": -0.12,
81
- "tone": "fall"
82
- },
83
- {
84
- "word": "好",
85
- "timestamp": [0.35, 0.60],
86
- "duration": 0.25,
87
- "boundary": "b3",
88
- "energy": 0.82,
89
- "pitch": 0.45,
90
- "tone": "rise"
91
- }
92
- // ...
93
- ]
94
  }
 
1
+ # WordVoice-5A: A Large-Scale Bilingual Dataset for Fine-Grained Controllable TTS
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
 
3
  ## Dataset Description / 数据集简介
4
 
 
14
 
15
  - **可控语音合成 (Controllable TTS)**:训练支持字级声学属性显式控制的 TTS 模型。
16
  - **韵律建模 (Prosody Modeling)**:研究中英双语在连续语流中的微观韵律与协同发音规律。
 
17
 
18
  The WordVoice-5A dataset contains approximately 4,684 hours of high-quality speech data (2,546 hours of Mandarin, 2,138 hours of English), encompassing over 52 million character/word-level annotations. Derived from the open-source LEMAS dataset and refined through rigorous dual-model cross-validation and cleansing, it is specifically designed for:
19
 
20
  - **Controllable TTS**: Training TTS models that support explicit word-level acoustic control.
21
  - **Prosody Modeling**: Researching micro-prosody and coarticulation patterns in continuous bilingual speech.
 
22
 
23
  ---
24
 
 
37
 
38
  ---
39
 
40
+ ## Use Cases / 使用场景
41
+
42
+ - 细粒度可控 LLM-TTS 模型训练 (Training fine-grained controllable LLM-TTS models)
43
+ - 有声书演播与视频配音中的精准局部韵律编辑 (Precise local prosody editing for audiobook narration and video dubbing)
44
+ - 跨语种字级声学特征分析与韵律预测 (Cross-lingual word-level acoustic feature analysis and prosody prediction)
45
+
46
+ ---
47
+
48
+ ## Citation / 引用
49
+
50
+ If you find this dataset useful in your research, please cite our paper:
51
+
52
+ ```bibtex
53
+ @inproceedings{wordvoice2027,
54
+ title={WordVoice: Explicit and Decoupled Multi-Dimensional Word-Level Control for LLM-Based TTS},
55
+ author={Your Name and Co-authors},
56
+ booktitle={Proceedings of the AAAI Conference on Artificial Intelligence},
57
+ year={2027}
 
 
 
 
 
 
 
 
 
 
 
 
 
58
  }