--- language: - ko language_creators: - crowdsourced license: - cc-by-4.0 multilinguality: - monolingual pretty_name: zeroth-korean source_datasets: - extended|kresnik/zeroth_korean size_categories: - 10K>> from datasets import load_dataset >>> dataset = load_dataset("Bingsu/zeroth-korean") >>> dataset DatasetDict({ train: Dataset({ features: ['audio', 'text'], num_rows: 22263 }) test: Dataset({ features: ['text', 'audio'], num_rows: 457 }) }) ``` ### Data Size download: 2.68 GiB
generated: 2.85 GiB
total: 5.52 GiB ### Data Fields - audio: `audio`, sampling rate = 16000 - A dictionary containing the path to the downloaded audio file, the decoded audio array, and the sampling rate. - Note that when accessing the audio column: `dataset[0]["audio"]` the audio file is automatically decoded and resampled to `dataset.features["audio"].sampling_rate`. Decoding and resampling of a large number of audio files might take a significant amount of time. Thus it is important to first query the sample index before the "audio" column, i.e. `dataset[0]["audio"]` should always be preferred over `dataset["audio"][0]`. - text: `string` ```pycon >>> dataset["train"][0] {'audio': {'path': None, 'array': array([-3.0517578e-05, 0.0000000e+00, -3.0517578e-05, ..., 0.0000000e+00, 0.0000000e+00, -6.1035156e-05], dtype=float32), 'sampling_rate': 16000}, 'text': '인사를 결정하는 과정에서 당 지도부가 우 원내대표 및 원내지도부와 충분한 상의를 거치지 않은 채 일방적으로 인사를 했다는 불만도 원내지도부를 중심으로 흘러나왔다'} ``` ### Data Splits | | train | test | | ---------- | -------- | ----- | | # of data | 22263 | 457 |