XXH333 commited on
Commit
613283d
·
verified ·
1 Parent(s): ac13541

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +30 -18
README.md CHANGED
@@ -37,22 +37,34 @@ The WordVoice-5A dataset contains approximately 4,684 hours of high-quality spee
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
  }
 
37
 
38
  ---
39
 
40
+ ## Data Structure & Annotation Details / 数据结构与标注说明
41
+
42
+ 数据集以 `JSONL` 格式提供,并配有对应的 `WAV` 音频文件。每条记录包含音频路径、文本以及每个字/词的五维属性标注列表。
43
+ The dataset is provided in `JSONL` format paired with `WAV` audio files. Each record contains the audio path, text transcript, and a list of 5-dimensional annotations for each character/word.
44
+
45
+ ### Data Format Example / 数据格式示例
46
+ ```json
47
+ {
48
+ "audio_path": "wavs/zh_00001.wav",
49
+ "text": "你好世界",
50
+ "word_level_annotations": [
51
+ {
52
+ "word": "你",
53
+ "timestamp": [0.12, 0.35],
54
+ "duration": 0.23,
55
+ "boundary": "b1",
56
+ "energy": 0.75,
57
+ "pitch": -0.12,
58
+ "tone": "fall"
59
+ },
60
+ {
61
+ "word": "好",
62
+ "timestamp": [0.35, 0.60],
63
+ "duration": 0.25,
64
+ "boundary": "b3",
65
+ "energy": 0.82,
66
+ "pitch": 0.45,
67
+ "tone": "rise"
68
+ }
69
+ ]
70
  }