--- dataset_info: features: - name: id dtype: int64 - name: start_time dtype: float32 - name: end_time dtype: float32 - name: session_num dtype: int64 - name: snapshot dtype: date32 - name: segment_number dtype: int64 - name: text dtype: string - name: duration dtype: float32 - name: audio dtype: audio splits: - name: train num_examples: 402966 configs: - config_name: default data_files: - split: train path: data/train-* task_categories: - automatic-speech-recognition language: - sk tags: - speech - asr - slovak - parliament - legal - politics - whisper pretty_name: SloPalSpeech size_categories: - 1M 40%. - Final dataset: 2,806 hours; 402,966 segments. ## 📊 Statistics | Metric | Value | |----------------|--------------:| | Total hours | 2,806 | | Total segments | 402,966 | | Avg. duration | 25.1 sec | | Sample rate | 16 kHz | ## 🚀 Example usage ```python from datasets import load_dataset ds = load_dataset("erikbozik/SloPalSpeech", split="train") sample = ds[0] print(sample["text"]) print(sample["duration"], "seconds") sample["audio"]["array"] # numpy waveform ``` ## 📝 Citation & Paper For more details, please see our paper on [arXiv](https://arxiv.org/abs/2509.19270). If you use this dataset in your work, please cite it as: ```bibtex @misc{božík2025slopalspeech2800hourslovakspeech, title={SloPalSpeech: A 2,800-Hour Slovak Speech Corpus from Parliamentary Data}, author={Erik Božík and Marek Šuppa}, year={2025}, eprint={2509.19270}, archivePrefix={arXiv}, primaryClass={cs.CL}, url={https://arxiv.org/abs/2509.19270}, } ```