Update README.md
Browse files
README.md
CHANGED
|
@@ -37,22 +37,34 @@ The WordVoice-5A dataset contains approximately 4,684 hours of high-quality spee
|
|
| 37 |
|
| 38 |
---
|
| 39 |
|
| 40 |
-
##
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
|
| 52 |
-
|
| 53 |
-
|
| 54 |
-
|
| 55 |
-
|
| 56 |
-
|
| 57 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
}
|