https://github.com/sooftware/ksponspeech
Pre-processing KsponSpeech corpus (Korean Speech dataset) provided by AI Hub.
https://github.com/sooftware/ksponspeech
aihub korean-speech kospeech ksponspeech
Last synced: about 1 month ago
JSON representation
Pre-processing KsponSpeech corpus (Korean Speech dataset) provided by AI Hub.
- Host: GitHub
- URL: https://github.com/sooftware/ksponspeech
- Owner: sooftware
- License: mit
- Created: 2020-06-02T07:09:49.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-12-24T06:27:07.000Z (over 3 years ago)
- Last Synced: 2025-04-09T23:51:36.084Z (about 1 month ago)
- Topics: aihub, korean-speech, kospeech, ksponspeech
- Language: Python
- Homepage:
- Size: 134 KB
- Stars: 90
- Watchers: 3
- Forks: 19
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# KsponSpeech
#### Pre-processing KsponSpeech corpus provided by AI Hub
It's been a while since [KsponSpeech](https://www.mdpi.com/2076-3417/10/19/6936) was released, but it's hard to compare performance because there's no established preprocessing method. So we're revealing the pre-processing method we used in the [KoSpeech](https://github.com/sooftware/KoSpeech) project. This project provides processing in characters, subwords, and grapheme units.
## Intro`KsponSpeech-preprocess` is repository for pre-processing `KsponSpeech corpus` provided by AI Hub.
**KsponSpeech corpus** is a **1000h** Korean speech data corpus provided by [AI Hub](http://www.aihub.or.kr/) in Korea.
Anyone can download this dataset just by applying. The transcription rules can see [here](http://www.aihub.or.kr/sites/default/files/2019-12/%ED%95%9C%EA%B5%AD%EC%96%B4%20%EC%9D%8C%EC%84%B1%20%EC%A0%84%EC%82%AC%EA%B7%9C%EC%B9%99%20v1.0.pdf).
You can pre-process in various output-units, such as ***character, subword, grapheme***
We will explain the details in the **Output-Unit** part below.
## Prerequisites
* Pandas: `pip install pandas` (Refer [here](https://github.com/pandas-dev/pandas) for problem installing Pandas)
* Sentencepiece: `pip install sentencepiece` (Refer [here](https://github.com/google/sentencepiece) for problem installing Sentencepiece)
## Usage
1. Set options in [run.sh](https://github.com/sooftware/KsponSpeech-preprocess/blob/master/run.sh)
```
python main.py --dataset_path $DATASET_PATH --vocab_dest $VOCAB_DEST --output_unit $OUTPUT_UNIT --preprocess_mode $PREPROCESS_MODE --vocab_size $VOCAB_SIZE
```
2. Run [run.sh](https://github.com/sooftware/KsponSpeech-preprocess/blob/master/run.sh)
```shell
$ ./run.sh
```
3. Leave the computer running for hours.
## Preprocess
You can choose between phonetic transcription and spelling transcription to preprocess.
* Raw data
```
b/ (70%)/(칠 십 퍼센트) 확률이라니 아/ (뭐+ 뭔)/(모+ 몬) 소리야 진짜 (100%)(백 프로)가 왜 안돼? n/
```
* Delete noise labels, such as b/, n/, / ..
```
(70%)/(칠 십 퍼센트) 확률이라니 아/ (뭐+ 뭔)/(모+ 몬) 소리야 진짜 (100%)(백 프로)가 왜 안돼?
```
* Delete labels such as '/', '*', '+', etc. (used for interjection representation)
```
(70%)/(칠 십 퍼센트) 확률이라니 아 (뭐 뭔)/(모 몬) 소리야 진짜 (100%)(백 프로)가 왜 안돼?
```
* Option1 : phonetic transcript
```
칠 십 퍼센트 확률이라니 아 모 몬 소리야 진짜 백 프로가 왜 안돼?
```* Option2 : spelling transcript
```
70% 확률이라니 아 뭐 뭔 소리야 진짜 100%가 왜 안돼?
```
## Output-Unit
This project provides processing in characters, subwords, and grapheme units.
* Character-Unit
```
아 모 몬 소리야 칠 십 퍼센트 확률이라니
```
* Subword-Unit
```
▁아 ▁모 ▁ 몬 ▁소리 야 ▁ 칠 ▁ 십 ▁퍼 센트 ▁확 률 이라 니
```* Grapheme-Unit
```
ㅇㅏ ㅁㅗ ㅁㅗㄴ ㅅㅗㄹㅣㅇㅑ ㅊㅣㄹ ㅅㅣㅂ ㅍㅓㅅㅔㄴㅌㅡ ㅎㅘㄱㄹㅠㄹㅇㅣㄹㅏㄴㅣ
```
## Conversion to Numeric id
* transcript
```
아 모 몬 소리야 칠 십 퍼센트 확률이라니
```* conversion
```
7 3 106 3 730 3 173 32 26 3 319 3 120 3 490 552 157 3 315 747 5 33 22
```
## Troubleshoots and Contributing
If you have any questions, bug reports, and feature requests, please [open an issue](https://github.com/sooftware/KsponSpeech.preprocess/issues) on Github.
For live discussions, please go to our [gitter](https://gitter.im/Korean-Speech-Recognition/community) or Contacts [email protected] please.
I appreciate any kind of feedback or contribution. Feel free to proceed with small issues like bug fixes, documentation improvement. For major contributions and new features, please discuss with the collaborators in corresponding issues.
## Author
* [Soohwan Kim](https://github.com/sooftware), [Seyoung Bae](https://github.com/triplet02), [Cheolhwang Won](https://github.com/wch18735), [Soyoung Cho](https://github.com/SoYoungCho), [Jeongwon Kwak](https://github.com/jeongwonkwak)
* Contacts: [email protected]