Views
No views yet
| Dataset | Hours (Hi) | License | Source |
|---|---|---|---|
| Shrutilipi | ~1,558 h | CC BY 4.0 | ai4bharat/shrutilipi |
| IITM Madras SpringLab | ~900 h | CC BY 4.0 | SpringLab |
| Common Voice 11.0 (Mozilla) | ~20 h | CC 0 1.0 (public domain) | mozilla/commonvoice |
| IndicSUPERB | 150 h | Apache License 2.0 | ai4bharat/indic-superb |
| snow-mountain | 67.6 h | CC BY-SA 4.0 | bridgeconn/snow-mountain |
| yodas | ~200 h | CC BY 3.0 | espnet/yodas |
| IndicVoices-R_Hindi | 75 h | CC BY 4.0 | SPRINGLab/IndicVoices-R_Hindi |
| Lahaja | 12.5 h | CC BY 4.0 | ai4bharat/lahaja |
| fleurs | 30.0 h | CC BY 4.0 | google/fleurs |
1>>> import torch
2>>> from transformers import pipeline
3>>> from datasets import load_dataset
4
5>>> device = "cuda:0" if torch.cuda.is_available() else "cpu"
6
7>>> asr_pipe = pipe(
8>>> "automatic-speech-recognition",
9>>> model="collabora/whisper-base-hindi",
10>>> chunk_length_s=30,
11>>> device=device
12>>> )
13
14>>> ds = load_dataset("mozilla-foundation/common_voice_11_0", "hi", split="validation")
15>>> sample = ds[0]["audio"]
16>>> prediction = asr_pipe(sample.copy(), return_timestamps=True)
17{'text': ' हमने उस उम्मीदवार को चुना', 'chunks': [{'timestamp': (0.0, 6.66), 'text': ' हमने उस उम्मीदवार को चुना'}]}'क्षेत्रफल बढ़ने से उत्पादन बढ़ा।''कषतरफल बढन स उतप दन बढ''क्षेत्रफल बढ़ने से उत्पादन बढ़ा।'openai-whisper/base baseline results on google/fleurs -- hindi:Word Error Rate (WER) with whisper norm: 149.17 %
Word Error Rate (WER) with indic norm: 160.58 % google/fleurs -- hindi:Word Error Rate (WER) with whisper norm: 8.49 %
Word Error Rate (WER) with indic norm: 17.42 % 1@misc{whisper-base-hindi,
2 title = {Whisper-Base Fine-Tuned on Hindi},
3 author = {Collabora Ltd.},
4 year = {2025},
5 publisher = {Hugging Face},
6 note = {Fine-tuned using Shrutilipi and IITM Madras SpringLab datasets},
7 howpublished = {\url{https://huggingface.co/collabora/whisper-base-hindi/}},
8}@misc{kunchukuttan2020indicnlp,
author = "Anoop Kunchukuttan",
title = "{The IndicNLP Library}",
year = "2020",
howpublished={\url{https://github.com/anoopkunchukuttan/indic_nlp_library/blob/master/docs/indicnlp.pdf}}
}1@misc{https://doi.org/10.48550/arxiv.2208.12666,
2 doi = {10.48550/ARXIV.2208.12666},
3 url = {https://arxiv.org/abs/2208.12666},
4 author = {Bhogale, Kaushal Santosh and Raman, Abhigyan and Javed, Tahir and Doddapaneni, Sumanth and Kunchukuttan, Anoop and Kumar, Pratyush and Khapra, Mitesh M.},
5 title = {Effectiveness of Mining Audio and Text Pairs from Public Data for Improving ASR Systems for Low-Resource Languages},
6 publisher = {arXiv},
7 year = {2022},
8 copyright = {arXiv.org perpetual, non-exclusive license}
9}