Update README.md
Browse files
README.md
CHANGED
@@ -1,36 +1,65 @@
|
|
1 |
-
---
|
2 |
-
license: apache-2.0
|
3 |
-
dataset_info:
|
4 |
-
features:
|
5 |
-
- name: audio
|
6 |
-
dtype: audio
|
7 |
-
- name: transcript_annotated
|
8 |
-
dtype: string
|
9 |
-
- name: transcript_a
|
10 |
-
dtype: string
|
11 |
-
- name: transcript_b
|
12 |
-
dtype: string
|
13 |
-
- name: transcript_c
|
14 |
-
dtype: string
|
15 |
-
splits:
|
16 |
-
- name: train
|
17 |
-
num_bytes: 1343263191.5
|
18 |
-
num_examples: 4500
|
19 |
-
- name: validation
|
20 |
-
num_bytes: 75479207.0
|
21 |
-
num_examples: 250
|
22 |
-
- name: test
|
23 |
-
num_bytes: 72139425.0
|
24 |
-
num_examples: 250
|
25 |
-
download_size: 1482840572
|
26 |
-
dataset_size: 1490881823.5
|
27 |
-
configs:
|
28 |
-
- config_name: default
|
29 |
-
data_files:
|
30 |
-
- split: train
|
31 |
-
path: data/train-*
|
32 |
-
- split: validation
|
33 |
-
path: data/validation-*
|
34 |
-
- split: test
|
35 |
-
path: data/test-*
|
36 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
dataset_info:
|
4 |
+
features:
|
5 |
+
- name: audio
|
6 |
+
dtype: audio
|
7 |
+
- name: transcript_annotated
|
8 |
+
dtype: string
|
9 |
+
- name: transcript_a
|
10 |
+
dtype: string
|
11 |
+
- name: transcript_b
|
12 |
+
dtype: string
|
13 |
+
- name: transcript_c
|
14 |
+
dtype: string
|
15 |
+
splits:
|
16 |
+
- name: train
|
17 |
+
num_bytes: 1343263191.5
|
18 |
+
num_examples: 4500
|
19 |
+
- name: validation
|
20 |
+
num_bytes: 75479207.0
|
21 |
+
num_examples: 250
|
22 |
+
- name: test
|
23 |
+
num_bytes: 72139425.0
|
24 |
+
num_examples: 250
|
25 |
+
download_size: 1482840572
|
26 |
+
dataset_size: 1490881823.5
|
27 |
+
configs:
|
28 |
+
- config_name: default
|
29 |
+
data_files:
|
30 |
+
- split: train
|
31 |
+
path: data/train-*
|
32 |
+
- split: validation
|
33 |
+
path: data/validation-*
|
34 |
+
- split: test
|
35 |
+
path: data/test-*
|
36 |
+
---
|
37 |
+
|
38 |
+
# DisfluencySpeech Dataset
|
39 |
+
|
40 |
+
The DisfluencySpeech Dataset is a single-speaker studio-quality labeled English speech dataset with paralanguage.
|
41 |
+
A single speaker recreates nearly 10 hours of expressive utterances from the Switchboard-1 Telephone Speech Corpus
|
42 |
+
(Switchboard), simulating realistic informal conversations. To aid the development of a text-to-speech (TTS) model that is able to
|
43 |
+
predictively synthesise paralanguage from text without such components, we provide three different transcripts at
|
44 |
+
different levels of information removal (removal of non-speech events, removal of non-sentence elements,
|
45 |
+
and removal of false starts).
|
46 |
+
|
47 |
+
Benchmark TTS models for each transcript can be found here.
|
48 |
+
|
49 |
+
# Dataset Details
|
50 |
+
|
51 |
+
All audio files are provided as 22,050 hz _.wav_ files. In the _metadata.csv_ file, 4 different transcripts for each file are provided,
|
52 |
+
each at differing levels of information removal:
|
53 |
+
|
54 |
+
- _transcript_annotated_ is a full transcript retaining all non-speech event and disfluency annotations;
|
55 |
+
- _transcript_a_ contains all textual content recorded, including non-sentence elements and restarts.
|
56 |
+
- Only non-speech events such as laughter and sighs are removed from transcript;
|
57 |
+
- _transcript_b_ is _transcript_a_ but with filled pauses, explicit editing terms, and discourse markers removed.
|
58 |
+
- Coordinating conjunctions and asides are left in, as they are non-sentence elements as well, they are often used to convey meaning; and
|
59 |
+
- _transcript_c_ is _transcript_b_ but with false starts removed. This is the most minimal transcript.
|
60 |
+
|
61 |
+
The training set contains 90% of the data, the validation set contains 5% of the data, and the test set contains 5% of the data.
|
62 |
+
|
63 |
+
# Citation
|
64 |
+
|
65 |
+
If you use this dataset, please cite the paper in which it is presented: _Kyra Wang, Dorien Herremans, 2024, DisfluencySpeech - Single-Speaker Conversational Speech Dataset with Paralanguage._
|