MushanW commited on
Commit
7d64f60
·
verified ·
1 Parent(s): 27324e3

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +79 -30
README.md CHANGED
@@ -1,30 +1,79 @@
1
- ---
2
- license: cc0-1.0
3
- dataset_info:
4
- features:
5
- - name: audio
6
- dtype: audio
7
- - name: speaker_id
8
- dtype: string
9
- - name: transcript
10
- dtype: string
11
- - name: accent
12
- dtype: string
13
- - name: duration
14
- dtype: float64
15
- - name: age
16
- dtype: string
17
- - name: gender
18
- dtype: string
19
- splits:
20
- - name: test
21
- num_bytes: 760728620.256
22
- num_examples: 5046
23
- download_size: 722516836
24
- dataset_size: 760728620.256
25
- configs:
26
- - config_name: default
27
- data_files:
28
- - split: test
29
- path: data/test-*
30
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ license: cc0-1.0
5
+ source_datasets:
6
+ - mozilla-foundation/common_voice_14_0
7
+ task_categories:
8
+ - text-to-audio
9
+ - automatic-speech-recognition
10
+ - audio-to-audio
11
+ - audio-classification
12
+ dataset_info:
13
+ features:
14
+ - name: audio
15
+ dtype: audio
16
+ - name: speaker_id
17
+ dtype: string
18
+ - name: transcript
19
+ dtype: string
20
+ - name: accent
21
+ dtype: string
22
+ - name: duration
23
+ dtype: float64
24
+ - name: age
25
+ dtype: string
26
+ - name: gender
27
+ dtype: string
28
+ splits:
29
+ - name: test
30
+ num_bytes: 496943021.995
31
+ num_examples: 5455
32
+ - name: val
33
+ num_bytes: 373541300.088
34
+ num_examples: 4111
35
+ - name: train
36
+ num_bytes: 53758082721.361
37
+ num_examples: 572159
38
+ download_size: 47602304610
39
+ dataset_size: 54628567043.444
40
+ configs:
41
+ - config_name: default
42
+ data_files:
43
+ - split: test
44
+ path: data/test-*
45
+ - split: val
46
+ path: data/val-*
47
+ - split: train
48
+ path: data/train-*
49
+ ---
50
+
51
+
52
+
53
+ # Important notice
54
+
55
+ Differences between V2 version and the version described in paper:
56
+
57
+ 1. The V2 version provide audio in 44.1kHz sample rate. (Supersampling)
58
+ 2. The V2 versionn removed some samples (~5%) due to the volumn and text aligment issues.
59
+
60
+ # Globe
61
+
62
+ The full paper can be accessed here: [arXiv](https://arxiv.org/abs/2406.14875)
63
+
64
+ An online demo can be accessed here: [Github](https://globecorpus.github.io/)
65
+
66
+ ## Abstract
67
+
68
+ This paper introduces GLOBE, a high-quality English corpus with worldwide accents, specifically designed to address the limitations of current zero-shot speaker adaptive Text-to-Speech (TTS) systems that exhibit poor generalizability in adapting to speakers with accents. Compared to commonly used English corpora, such as LibriTTS and VCTK, GLOBE is unique in its inclusion of utterances from 23,519 speakers and covers 164 accents worldwide, along with detailed metadata for these speakers. Compared to its original corpus, i.e., Common Voice, GLOBE significantly improves the quality of the speech data through rigorous filtering and enhancement processes, while also populating all missing speaker metadata. The final curated GLOBE corpus includes 535 hours of speech data at a 24 kHz sampling rate. Our benchmark results indicate that the speaker adaptive TTS model trained on the GLOBE corpus can synthesize speech with better speaker similarity and comparable naturalness than that trained on other popular corpora. We will release GLOBE publicly after acceptance.
69
+
70
+ ## Citation
71
+ ```
72
+ @misc{wang2024globe,
73
+ title={GLOBE: A High-quality English Corpus with Global Accents for Zero-shot Speaker Adaptive Text-to-Speech},
74
+ author={Wenbin Wang and Yang Song and Sanjay Jha},
75
+ year={2024},
76
+ eprint={2406.14875},
77
+ archivePrefix={arXiv},
78
+ }
79
+ ```