File size: 2,072 Bytes
31419cc
 
87b1abd
 
 
 
 
 
 
 
 
 
 
 
 
b71b2e5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
c07efe8
b71b2e5
 
 
 
 
 
 
 
 
 
c07efe8
b71b2e5
 
 
 
 
c07efe8
b71b2e5
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
---
license: mit
task_categories:
- audio-classification
language:
- yue
tags:
- speech
- cantonese
- yue
- syllable
- pronunciation
pretty_name: Cantone
size_categories:
- 10K<n<100K
---

# Cantone

A dataset of 34,489 recordings of Cantonese syllables by 10 speakers.
Those syllables are generated through the Cantonese speech synthesis engines of Amazon, Apple, Google, and Microsoft.

All recordings are stored as WAV files with the following format
  * Channel: mono
  * Sample rate: 16 kHz
  * Bits per sample: 16

Here's a breakdown of the number of recordings under each speaker:
| Company | Speaker | # Syllables |
| --------|-------- | -------- |
| Amazon  | Hiujin  | 3,885 |
| Apple   | Aasing  | 2,977 |
| Apple   | Sinji   | 2,977 |
| Google  | A       | 3,653 |
| Google  | B       | 3,653 |
| Google  | C       | 3,653 |
| Google  | D       | 3,653 |
| Microsoft | Hiugaai | 3,349 |
| Microsoft | Hiumaan | 3,349 |
| Microsoft | Wanlung | 3,349 |

## Dataset Construction

1. Gathering

We first identified 3,904 common Cantonese syllables based on words.hk's syllable recordings.
The, we ask the speech synthesis APIs to pronounce each of the syllables.
The queries use SSML's phoneme attribute to precisely specify the syllable we want. Here's a sample SSML query that fetches the syllable jyut6:
```xml
<speak><phoneme alphabet='jyutping' ph='jyut6'></phoneme></speak>
```

Apple voices are gathered using jyutping text directly and a native Cantonese ASR system is used to filter out unsupported syllables.

2. Preprocessing

* All audios are converted to 16kHz WAV files
* Peak normalize all audios to -20 dBFS
* Clip silence at the beginning and end (sound below -50 dBFS are deemed silence)

3. Verification

Occassionally, some syllables are not synthesized correctly.
* Apple voices usually renders tone 5 syllables as tone 2: we remove all tone 5 syllables from apple voices 
* Microsoft voices prepends consonants like ng, g, and b in front of isolate vowel syllables like aa: we remove all vowel syllables from microsoft voices

## License
MIT