kresnik commited on
Commit
877d9bb
โ€ข
1 Parent(s): 2d2b26a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +105 -0
README.md CHANGED
@@ -32,3 +32,108 @@ configs:
32
  - split: test
33
  path: data/test-*
34
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
32
  - split: test
33
  path: data/test-*
34
  ---
35
+
36
+
37
+ # Zeroth-Korean Dataset
38
+
39
+ ## Introduction
40
+ The Zeroth-Korean dataset is a publicly available speech dataset created for Korean automatic speech recognition (ASR) research and development. This dataset is distributed under the CC BY 4.0 license, allowing anyone to use it freely. The goal of the Zeroth project is to make Korean speech recognition more widely accessible.
41
+
42
+ ## Dataset Overview
43
+ - **Total Data**: Approximately 51.6 hours of training data and 1.2 hours of test data
44
+ - **Number of Utterances**: 22,263 utterances in the training set and 457 utterances in the test set
45
+ - **Number of Speakers**: 105 speakers in the training set, 10 speakers in the test set
46
+ - **Sampling Rate**: 16kHz
47
+
48
+ ## Version Information
49
+ ### Version 2.0.0
50
+ - **Changes**:
51
+ - Instead of downloading the original files directly from openslr.org, the data is distributed using pyarrow for more efficient storage.
52
+ - The `audio` field has been updated from `numpy.ndarray` to `datasets.Audio` type for improved accessibility of audio data.
53
+ - The `file` field has been renamed to `path`.
54
+
55
+ ## Dataset Composition
56
+ - **Training Data (Train)**: Consists of 51.6 hours of Korean utterances, with a total of 22,263 utterances. This data is used to train speech recognition models.
57
+ - **Test Data (Test)**: Consists of 1.2 hours of utterances, with a total of 457 utterances, used for evaluating model performance.
58
+
59
+ ### Data Fields
60
+ - **id**: Unique identifier for each utterance (string)
61
+ - **speaker_id**: Speaker identifier (int64)
62
+ - **chapter_id**: Chapter identifier (int64)
63
+ - **path**: Path to the audio file (string)
64
+ - **audio**: Audio data (managed as `datasets.Audio` type, sampling rate 16kHz)
65
+ - **text**: Transcribed text of the utterance (string)
66
+
67
+ ## Usage Example
68
+ The Zeroth-Korean dataset can be easily loaded using the Hugging Face library.
69
+
70
+ ```python
71
+ from datasets import load_dataset
72
+
73
+ # Load Zeroth-Korean dataset
74
+ dataset = load_dataset("kresnik/zeroth_korean")
75
+
76
+ # Print an example from the training dataset
77
+ print(dataset['train'][0])
78
+ ```
79
+
80
+ ## License
81
+ This dataset follows the [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/) license. This license allows the data to be used freely, provided the source is properly credited.
82
+
83
+ The uploader has transferred the publicly available data from openslr.org to the Hugging Face Hub and did not participate in the creation of the dataset. This dataset is provided to facilitate broader accessibility of the original dataset.
84
+
85
+ The Zeroth project was developed through the collaboration of Lucas Jo (@Atlas Guide Inc.) and Wonkyum Lee (@Gridspace Inc.).
86
+ - **Contact**: Lucas Jo (lucasjo@goodatlas.com), Wonkyum Lee (wonkyum@gridspace.com)
87
+
88
+
89
+ # Zeroth-Korean ๋ฐ์ดํ„ฐ์…‹ (ํ•œ๊ธ€)
90
+
91
+ ## ์†Œ๊ฐœ
92
+ Zeroth-Korean ๋ฐ์ดํ„ฐ์…‹์€ ํ•œ๊ตญ์–ด ์Œ์„ฑ ์ธ์‹ ์—ฐ๊ตฌ์™€ ๊ฐœ๋ฐœ์„ ์œ„ํ•ด ์ œ์ž‘๋œ ๊ณต๊ฐœ ์Œ์„ฑ ๋ฐ์ดํ„ฐ์…‹์ž…๋‹ˆ๋‹ค. ์ด ๋ฐ์ดํ„ฐ์…‹์€ CC BY 4.0 ๋ผ์ด์„ ์Šค ํ•˜์— ๋ฐฐํฌ๋˜๋ฉฐ, ๋ˆ„๊ตฌ๋‚˜ ์ž์œ ๋กญ๊ฒŒ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค. Zeroth ํ”„๋กœ์ ํŠธ์˜ ๋ชฉํ‘œ๋Š” ํ•œ๊ตญ์–ด ์Œ์„ฑ ์ธ์‹์„ ๋” ๋„๋ฆฌ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋„๋ก ํ•˜๋Š” ๊ฒƒ์ž…๋‹ˆ๋‹ค.
93
+
94
+ ## ๋ฐ์ดํ„ฐ์…‹ ๊ฐœ์š”
95
+ - **์ด ๋ฐ์ดํ„ฐ๋Ÿ‰**: ์•ฝ 51.6์‹œ๊ฐ„์˜ ํ›ˆ๋ จ ๋ฐ์ดํ„ฐ์™€ 1.2์‹œ๊ฐ„์˜ ํ…Œ์ŠคํŠธ ๋ฐ์ดํ„ฐ
96
+ - **๋ฐœํ™” ์ˆ˜**: 22,263๊ฐœ์˜ ํ›ˆ๋ จ ๋ฐœํ™”์™€ 457๊ฐœ์˜ ํ…Œ์ŠคํŠธ ๋ฐœํ™”
97
+ - **ํ™”์ž ์ˆ˜**: ํ›ˆ๋ จ ๋ฐ์ดํ„ฐ์—์„œ 105๋ช…์˜ ํ™”์ž, ํ…Œ์ŠคํŠธ ๋ฐ์ดํ„ฐ์—์„œ 10๋ช…์˜ ํ™”์ž
98
+ - **์ƒ˜ํ”Œ๋ง ๋ ˆ์ดํŠธ**: 16kHz
99
+
100
+ ## ๋ฒ„์ „ ์ •๋ณด
101
+ ### Version 2.0.0
102
+ - **๋ณ€๊ฒฝ ์‚ฌํ•ญ**:
103
+ - openslr.org์—์„œ ์›๋ณธ ํŒŒ์ผ์„ ์ง์ ‘ ๋‹ค์šด๋กœ๋“œํ•˜๋Š” ๋ฐฉ์‹ ๋Œ€์‹  pyarrow๋ฅผ ์‚ฌ์šฉํ•˜์—ฌ ๋ถ„์‚ฐ ์ €์žฅ
104
+ - `audio` ํ•„๋“œ๋ฅผ `numpy.ndarray` ๋Œ€์‹  `datasets.Audio` ํƒ€์ž…์œผ๋กœ ์—…๋ฐ์ดํŠธํ•˜์—ฌ ์˜ค๋””์˜ค ๋ฐ์ดํ„ฐ ์ ‘๊ทผ์„ฑ ํ–ฅ์ƒ
105
+ - ๊ธฐ์กด `file` ํ•„๋“œ๋ฅผ `path`๋กœ ์ด๋ฆ„ ๋ณ€๊ฒฝ
106
+
107
+ ## ๋ฐ์ดํ„ฐ ๊ตฌ์„ฑ
108
+ - **ํ›ˆ๋ จ ๋ฐ์ดํ„ฐ (Train)**: 51.6์‹œ๊ฐ„์˜ ํ•œ๊ตญ์–ด ๋ฐœํ™” ๋ฐ์ดํ„ฐ๋กœ ๊ตฌ์„ฑ๋˜๋ฉฐ, ๋ฐœํ™” ์ˆ˜๋Š” ์ด 22,263๊ฐœ์ž…๋‹ˆ๋‹ค. ์ด ๋ฐ์ดํ„ฐ๋Š” ์Œ์„ฑ ์ธ์‹ ๋ชจ๋ธ์˜ ํ›ˆ๋ จ์— ์‚ฌ์šฉ๋ฉ๋‹ˆ๋‹ค.
109
+ - **ํ…Œ์ŠคํŠธ ๋ฐ์ดํ„ฐ (Test)**: 1.2์‹œ๊ฐ„์˜ ๋ฐœํ™” ๋ฐ์ดํ„ฐ๋กœ, ์ด 457๊ฐœ์˜ ๋ฐœํ™”๋กœ ๊ตฌ์„ฑ๋˜์–ด ์žˆ์œผ๋ฉฐ, ๋ชจ๋ธ ์„ฑ๋Šฅ ๊ฒ€์ฆ์— ์‚ฌ์šฉ๋ฉ๋‹ˆ๋‹ค.
110
+
111
+ ### ๋ฐ์ดํ„ฐ ํ•„๋“œ
112
+ - **id**: ๋ฐœํ™” ๊ณ ์œ  ์‹๋ณ„์ž (string)
113
+ - **speaker_id**: ํ™”์ž ์‹๋ณ„ ๋ฒˆํ˜ธ (int64)
114
+ - **chapter_id**: ์ฑ•ํ„ฐ ์‹๋ณ„ ๋ฒˆํ˜ธ (int64)
115
+ - **path**: ์˜ค๋””์˜ค ํŒŒ์ผ ๊ฒฝ๋กœ (string)
116
+ - **audio**: ์˜ค๋””์˜ค ๋ฐ์ดํ„ฐ (`datasets.Audio` ํƒ€์ž…์œผ๋กœ ๊ด€๋ฆฌ, ์ƒ˜ํ”Œ๋ง ๋ ˆ์ดํŠธ 16kHz)
117
+ - **text**: ๋ฐœํ™”๋œ ๋ฌธ์žฅ (string)
118
+
119
+ ## ์‚ฌ์šฉ ์˜ˆ์‹œ
120
+ Hugging Face ๋ผ์ด๋ธŒ๋Ÿฌ๋ฆฌ๋ฅผ ํ†ตํ•ด Zeroth-Korean ๋ฐ์ดํ„ฐ์…‹์„ ์‰ฝ๊ฒŒ ๋กœ๋“œํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค.
121
+
122
+ ```python
123
+ from datasets import load_dataset
124
+
125
+ # Zeroth-Korean ๋ฐ์ดํ„ฐ์…‹ ๋กœ๋“œ
126
+ dataset = load_dataset("kresnik/zeroth_korean")
127
+
128
+ # ํ›ˆ๋ จ ๋ฐ์ดํ„ฐ์…‹ ์˜ˆ์‹œ ์ถœ๋ ฅ
129
+ print(dataset['train'][0])
130
+ ```
131
+
132
+ ## ๋ผ์ด์„ ์Šค
133
+ ์ด ๋ฐ์ดํ„ฐ์…‹์€ [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/) ๋ผ์ด์„ ์Šค๋ฅผ ๋”ฐ๋ฆ…๋‹ˆ๋‹ค. ์ด ๋ผ์ด์„ ์Šค๋Š” ๋ฐ์ดํ„ฐ๋ฅผ ์ž์œ ๋กญ๊ฒŒ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋„๋ก ํ—ˆ์šฉํ•˜๋˜, ์ถœ์ฒ˜๋ฅผ ๋ฐ˜๋“œ์‹œ ๋ช…์‹œํ•ด์•ผ ํ•ฉ๋‹ˆ๋‹ค.
134
+
135
+ ๊ฒŒ์‹œ์ž๋Š” openslr.org์— ๊ณต๊ฐœ๋œ ๋ฐ์ดํ„ฐ๋ฅผ Hugging Face Hub์— ์˜ฎ๊ฒจ ๋ฐฐํฌํ•˜๋Š” ์—ญํ• ์„ ์ˆ˜ํ–‰ํ•˜์˜€์œผ๋ฉฐ, ๋ฐ์ดํ„ฐ์…‹ ์ œ์ž‘์—๋Š” ์ฐธ์—ฌํ•˜์ง€ ์•Š์•˜์Šต๋‹ˆ๋‹ค. ์ด ๋ฐ์ดํ„ฐ์…‹์€ ์›๋ณธ ๋ฐ์ดํ„ฐ์…‹์˜ ๋ฐฐํฌ๋ฅผ ๋•๊ธฐ ์œ„ํ•œ ๋ชฉ์ ์œผ๋กœ ์ œ๊ณต๋ฉ๋‹ˆ๋‹ค.
136
+
137
+ Zeroth ํ”„๋กœ์ ํŠธ๋Š” Lucas Jo (@Atlas Guide Inc.)์™€ Wonkyum Lee (@Gridspace Inc.)์˜ ํ˜‘๋ ฅ์œผ๋กœ ๊ฐœ๋ฐœ๋˜์—ˆ์Šต๋‹ˆ๋‹ค.
138
+ - **์—ฐ๋ฝ์ฒ˜**: Lucas Jo (lucasjo@goodatlas.com), Wonkyum Lee (wonkyum@gridspace.com)
139
+