Datasets:
Tasks:
Automatic Speech Recognition
Formats:
parquet
Size:
10K - 100K
ArXiv:
Tags:
phonetic transcription
License:
Update README.md
Browse files
README.md
CHANGED
@@ -59,4 +59,50 @@ size_categories:
|
|
59 |
# Dataset Summary
|
60 |
|
61 |
This dataset is a modified version of the ASCEND dataset which consists of spontaneous Mandarin-English code-switched speech. The ASCEND dataset was published by Lovenia et al. (2022) (Check [here](https://huggingface.co/datasets/CAiRE/ASCEND) for the dataset and [here](https://arxiv.org/pdf/2112.06223v6) for the paper).
|
62 |
-
This dataset adds a phonetic transcription column to the dataset using the eSpeak backend from the phonemizer library created by Bernard et al. (2021) (Check it out [here](https://github.com/bootphon/phonemizer)).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
59 |
# Dataset Summary
|
60 |
|
61 |
This dataset is a modified version of the ASCEND dataset which consists of spontaneous Mandarin-English code-switched speech. The ASCEND dataset was published by Lovenia et al. (2022) (Check [here](https://huggingface.co/datasets/CAiRE/ASCEND) for the dataset and [here](https://arxiv.org/pdf/2112.06223v6) for the paper).
|
62 |
+
This dataset adds a phonetic transcription column to the dataset using the eSpeak backend from the phonemizer library created by Bernard et al. (2021) (Check it out [here](https://github.com/bootphon/phonemizer)).
|
63 |
+
|
64 |
+
|
65 |
+
## the following documentation is a modified version of the ASCEND [documentation](https://huggingface.co/datasets/CAiRE/ASCEND)
|
66 |
+
|
67 |
+
# Usage
|
68 |
+
|
69 |
+
To use the full dataset, run this:
|
70 |
+
|
71 |
+
```
|
72 |
+
from datasets import load_dataset
|
73 |
+
|
74 |
+
ds = load_dataset("katyayego/ASCEND-phoneme")
|
75 |
+
```
|
76 |
+
|
77 |
+
# Dataset Structure
|
78 |
+
|
79 |
+
A typical data point comprises the path to the audio file, the loaded audio array, and its transcription and phonetic transcription. Additional fields include datapoint id, duration, language, speaker id, session id, and topic.
|
80 |
+
|
81 |
+
|
82 |
+
```
|
83 |
+
{
|
84 |
+
'id': '00644',
|
85 |
+
'path': 'example_path.wav',
|
86 |
+
'audio': {
|
87 |
+
'path': 'example_audio.wav',
|
88 |
+
'array': array([-0.00320435, -0.00296021, -0.00039673, ..., 0.00198364,
|
89 |
+
0.00158691, -0.00061035]),
|
90 |
+
'sampling_rate': 16000
|
91 |
+
},
|
92 |
+
'transcription': '我们应该去帮助他们说',
|
93 |
+
'duration': 2.119999885559082,
|
94 |
+
'language': 'zh',
|
95 |
+
'original_speaker_id': 9,
|
96 |
+
'session_id': 3,
|
97 |
+
'topic': 'technology',
|
98 |
+
'phonetic_trans': 'w o2 m ə1 n j i5 ŋ k ai5 tɕh y5 p a5 ŋ ts. u5 th ɑ5 m ə1 n s. w o5'
|
99 |
+
}
|
100 |
+
```
|
101 |
+
|
102 |
+
# Data Splits
|
103 |
+
|
104 |
+
Number of utterances: 9,869 train, 1,130 validation, and 1,315 test.
|
105 |
+
|
106 |
+
# Licensing Information
|
107 |
+
|
108 |
+
Creative Common Attribution Share-Alike 4.0 International (CC-BY-SA 4.0)
|