Datasets:

Modalities:
Audio
Text
Formats:
parquet
Languages:
Chinese
ArXiv:
Libraries:
Datasets
Dask
License:
evan0617 commited on
Commit
5b04251
·
verified ·
1 Parent(s): ce394c2

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +38 -9
README.md CHANGED
@@ -89,26 +89,55 @@ This dataset contains 55.53 hours of high-quality speech data collected from 202
89
 
90
  ### Dataset Structure
91
 
 
92
 
93
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
94
 
95
  The dataset is split into three subsets:
96
  | Split | # Speakers | # Utterances | Duration (hrs) | Avg. Utterance Length (s) |
97
  | :--------- | :--------: | :----------: | :------------: | :-----------------------: |
98
- | `train` | 317 | 32,658 | 33.35 | 3.68 |
99
- | `validation` | 39 | 4,057 | 3.78 | 3.35 |
100
- | `test` | 41 | 4,198 | 4.12 | 3.53 |
101
- | **Total** | **397** | **40,913** | **41.25** | **3.52** |
 
102
 
103
  The dataset file structure is as follows.
104
  ```
105
- data/
106
- ├── train/*.tar
107
- ├── dev/*.tar
108
- ── test/*.tar
 
 
109
  speaker_info.xlsx # summary of speaker information
110
  ```
111
- Each WAV file has a corresponding JSON file with the same name, containing its annotations.
112
 
113
  For more details, please refer to our paper [SeniorTalk](https://www.arxiv.org/abs/2503.16578).
114
 
 
89
 
90
  ### Dataset Structure
91
 
92
+ ## Dialogue Dataset
93
 
94
 
95
+ The dataset is split into two subsets:
96
+ | Split | # Speakers | # Dialogues | Duration (hrs) | Avg. Dialogue Length (h) |
97
+ | :--------- | :--------: | :----------: | :------------: | :-----------------------: |
98
+ | `train` | 182 | 91 | 49.83 | 0.54 |
99
+ | `test` | 20 | 10 | 5.70 | 0.57 |
100
+ | **Total** | **202** | **101** | **55.53** | **0.55** |
101
+
102
+
103
+
104
+ The dataset file structure is as follows.
105
+ ```
106
+
107
+ dialogue_data/
108
+ ├── wav
109
+ │ ├── train/*.tar
110
+ │ └── test/*.tar
111
+ └── transcript/*.txt
112
+ speaker_info.xlsx # summary of speaker information
113
+ ```
114
+ Each WAV file has a corresponding TXT file with the same name, containing its annotations.
115
+
116
+ For more details, please refer to our paper [SeniorTalk](https://www.arxiv.org/abs/2503.16578).
117
+
118
+ ## ASR Dataset
119
+
120
 
121
  The dataset is split into three subsets:
122
  | Split | # Speakers | # Utterances | Duration (hrs) | Avg. Utterance Length (s) |
123
  | :--------- | :--------: | :----------: | :------------: | :-----------------------: |
124
+ | `train` | 162 | 47,269 | 29.95 | 2.28 |
125
+ | `validation` | 20 | 6,891 | 4.09 | 2.14 |
126
+ | `test` | 20 | 5,869 | 3.77 | 2.31 |
127
+ | **Total** | **202** | **60,029** | **37.81** | **2.27** |
128
+
129
 
130
  The dataset file structure is as follows.
131
  ```
132
+ sentence_data/
133
+ ├── wav
134
+ ├── train/*.tar
135
+ │ ├── dev/*.tar
136
+ │ └── test/*.tar
137
+ └── transcript/*.txt
138
  speaker_info.xlsx # summary of speaker information
139
  ```
140
+ Each WAV file has a corresponding TXT, containing its annotations.
141
 
142
  For more details, please refer to our paper [SeniorTalk](https://www.arxiv.org/abs/2503.16578).
143