Whisper Tiny English model adapted for improved robustness on Indian-accent English speech, while retaining general English ASR performance.
This model is a domain-adapted ASR checkpoint built from Whisper Tiny English for better transcription quality on Indian-accent English audio.
It was fine-tuned in a constrained local setup and then shared on Hugging Face Hub.
1from transformers import pipeline
2
3asr = pipeline(
4 "automatic-speech-recognition",
5 model="dk2325/whisper-tiny-indian-accent",
6 device=-1 # set to 0 for CUDA if available
7)
8
9result = asr(
10 "path/to/audio.wav",
11 generate_kwargs={"language": "en", "task": "transcribe"}
12)
13
14print(result["text"])
-
General validation sample (1 percent batch test):
- Base model WER: 0.2806
- Fine-tuned model WER: 0.0586
-
Indian-accent small-sample check:
- Observed improvement trend in domain-specific transcription quality (qualitative and quick quantitative checks)
The adaptation phase substantially improved ASR quality in project validation and showed better handling of Indian-accent speech, with a practical low-resource training strategy.
Carbon emissions can be estimated using the Machine Learning Impact calculator:
https://mlco2.github.io/impact#compute
1@misc{dk2325_whisper_tiny_indian_accent_2026,
2 title={Whisper Tiny Indian Accent Adaptation},
3 author={DK2325},
4 year={2026},
5 howpublished={\url{https://huggingface.co/dk2325/whisper-tiny-indian-accent}}
6}
DK2325. (2026). Whisper Tiny Indian Accent Adaptation. Hugging Face.
https://huggingface.co/dk2325/whisper-tiny-indian-accent
This model was developed as a practical end-to-end ASR fine-tuning and deployment project under tight hardware constraints, with focus on measurable improvement and reproducible workflow.
Use the Hugging Face profile contact path:
https://huggingface.co/dk2325
If you want, I can also give you a second version optimized for recruiter readability, shorter and more impact-focused for public profile views.