Datasets:
metadata
pretty_name: datatalk (Indonesian)
tags:
- audio
- speech
- tts
- asr
language:
- id
license: cc-by-4.0
task_categories:
- automatic-speech-recognition
- text-to-speech
size_categories:
- 1K<n<10K
pelatihpokemongo/datatalk
An Elise-style Indonesian speech dataset with two columns: audio and text, published for quick prototyping in ASR/TTS. Built from local audio and transcripts with a single train split. Viewer is auto-converted to Parquet for fast preview on the Hub.
- Reference structure: MrDragonFox/Elise
- Creation guide: Create a dataset
Dataset summary
- Split:
train - Rows: 5,400
- Columns:
audio(datasets.Audio): waveform automatically decoded by the Hubtext(string): transcript in Indonesian
Intended use
- Quick experiments for ASR baselines or TTS tokenizers/aligners.
- Finetuning demos where a compact Indonesian set with transcripts is useful.
How it was built
Data were collected from /Users/benny/Development/side/dataset/audio/id and assembled using the helper script scripts/build_hf_dataset.py in this workspace. Key rules:
- Detect transcripts from a manifest if present (e.g.,
validated.tsv, CSV/TSV/JSONL/JSON); otherwise look for sidecar.txtfiles (same basename). - Random sampling with seed
42to pick the target number of rows. - Enforced non-empty transcripts (
--no-empty-text). - Cast
audiocolumn todatasets.Audio()so it is playable in the Viewer and durations are computed. - Uploaded using
Dataset.push_to_hub("pelatihpokemongo/datatalk").
Repro command used most recently:
python scripts/build_hf_dataset.py \
--data-root /Users/benny/Development/side/dataset/audio/id \
--repo-id pelatihpokemongo/datatalk \
--num-rows 5400 \
--seed 42 \
--no-empty-text
Usage
from datasets import load_dataset
ds = load_dataset("pelatihpokemongo/datatalk", split="train")
example = ds[0]
audio = example["audio"] # dict with 'array', 'sampling_rate', 'path'
text = example["text"]
print(text)
Streaming preview (large repos) is also supported:
ds_stream = load_dataset("pelatihpokemongo/datatalk", split="train", streaming=True)
first = next(iter(ds_stream))
License
This dataset card declares cc-by-4.0. Ensure your upstream audio/transcript sources are compatible with the selected license. If you need a different license, update this card accordingly.
Limitations
- Compact size; not representative of all Indonesian accents or domains.
- Text normalization and punctuation are minimally curated.
Acknowledgements
- Thanks to the Hugging Face Datasets team for the excellent tooling.
- Structure inspired by MrDragonFox/Elise.