ASLP-lab commited on
Commit
74150b0
·
verified ·
1 Parent(s): a7d386c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +33 -10
README.md CHANGED
@@ -58,8 +58,14 @@ We store all audio metadata in a standardized JSON format, where the core fields
58
 
59
  #### 📂 Content Tree
60
  ```
 
61
  WenetSpeech-Chuan
62
  ├── metadata.jsonl
 
 
 
 
 
63
 
64
  ├── audio_labels/
65
  │ ├── wav_utt_id.jsonl
@@ -68,21 +74,38 @@ WenetSpeech-Chuan
68
  │ └── wav_utt_id.jsonl
69
 
70
  ├── .gitattributes
71
- └── README.md
72
  ```
73
  #### Data sample(CN):
74
 
75
  ###### metadata.jsonl
76
  {
77
- "utt_id": 原始长音频id,
78
- "wav_utt_id": 转化为wav后的长音频id,
79
- "source_audio_path": 原始长音频路径,
80
- "audio_labels": 转化后的长音频切分出的短音频标签文件路径,
81
- "url": 原始长音频下载链接
 
 
 
82
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
83
 
84
 
85
- ###### audio_labels/wav_utt_id.jsonl:
 
86
  { <br>
87
  "wav_utt_id_timestamp": 以 转化为wav后的长音频id_时间戳信息 作为切分后的短音频id (type: str), <br>
88
  "wav_utt_id_timestamp_path": 短音频数据路径 (type: str), <br>
@@ -97,8 +120,8 @@ WenetSpeech-Chuan
97
  "age": 说话人年龄标签 (type: int范围, eg: 中年(36~59)), <br>
98
  "gender": 说话人性别标签 (type: str,eg: 男/女), <br>
99
  } <br>
100
-
101
- #### Data sample(EN):
102
 
103
  ###### metadata.jsonl
104
  { <br>
@@ -126,7 +149,7 @@ WenetSpeech-Chuan
126
  "age": Speaker’s age label (type: int range, e.g., middle-aged (36–59)), <br>
127
  "gender": Speaker’s gender label (type: str, e.g., male/female) <br>
128
  } <br>
129
-
130
  ### WenetSpeech Usage
131
  You can obtain the original video source through the `link` field in the metadata file (`metadata.json`). Segment the audio according to the `timestamps` field to extract the corresponding record. For pre-processed audio data, please contact us using the information provided below.
132
 
 
58
 
59
  #### 📂 Content Tree
60
  ```
61
+
62
  WenetSpeech-Chuan
63
  ├── metadata.jsonl
64
+ ├── .gitattributes
65
+ └── README.md
66
+
67
+ <!-- WenetSpeech-Chuan
68
+ ├── metadata.jsonl
69
 
70
  ├── audio_labels/
71
  │ ├── wav_utt_id.jsonl
 
74
  │ └── wav_utt_id.jsonl
75
 
76
  ├── .gitattributes
77
+ └── README.md -->
78
  ```
79
  #### Data sample(CN):
80
 
81
  ###### metadata.jsonl
82
  {
83
+ "utt": 音频id,
84
+ "filename":音频文件名(type: str),
85
+ "text": 转录抄本(type: str),
86
+ "domain": 参考领域信息(type: list[str]),
87
+ "gender": 说话人性别(type: str),
88
+ "age": 说话人年龄标签 (type: int范围, eg: 中年(36~59)),
89
+ "wvmos": 音频质量分数(type: float),
90
+ "confidence": 转录文本置信度(0-1)(type: str)
91
  }
92
+ <br>
93
+ **example:**
94
+ {<br>
95
+ "utt": "013165482320_dwM1G_56_5920", <br>
96
+ "filename": "013165482320_dwM1G_56_5920.wav", <br>
97
+ "text": "道具组安排上了来吧每行都对啊李老师", <br>
98
+ "domain": ["短视频"], <br>
99
+ "gender": male, <br>
100
+ "age": null, <br>
101
+ "emotion": angry, <br>
102
+ "wvmos": 0.9570670127868652, <br>
103
+ "confidence": 0.9706 <br>
104
+ } <br>
105
 
106
 
107
+
108
+ <!-- ###### audio_labels/wav_utt_id.jsonl:
109
  { <br>
110
  "wav_utt_id_timestamp": 以 转化为wav后的长音频id_时间戳信息 作为切分后的短音频id (type: str), <br>
111
  "wav_utt_id_timestamp_path": 短音频数据路径 (type: str), <br>
 
120
  "age": 说话人年龄标签 (type: int范围, eg: 中年(36~59)), <br>
121
  "gender": 说话人性别标签 (type: str,eg: 男/女), <br>
122
  } <br>
123
+ -->
124
+ <!-- #### Data sample(EN):
125
 
126
  ###### metadata.jsonl
127
  { <br>
 
149
  "age": Speaker’s age label (type: int range, e.g., middle-aged (36–59)), <br>
150
  "gender": Speaker’s gender label (type: str, e.g., male/female) <br>
151
  } <br>
152
+ -->
153
  ### WenetSpeech Usage
154
  You can obtain the original video source through the `link` field in the metadata file (`metadata.json`). Segment the audio according to the `timestamps` field to extract the corresponding record. For pre-processed audio data, please contact us using the information provided below.
155