Views
No views yet
openai/whisper-smallwhisper-small model, optimized for speech-to-text transcription on movies & TV show audio. This model is specifically trained to improve ASR (Automatic Speech Recognition) performance in dialogue-heavy scenarios.| Hyperparameter | Value |
|---|---|
| Learning Rate | 5e-5 |
| Batch Size | 6 |
| Gradient Accumulation | 4 |
| Epochs | 5 |
LoRA Rank (r) | 4 |
| Optimizer | AdamW |
| Epoch | Training Loss | Validation Loss | WER (%) |
|---|---|---|---|
| 1 | 0.502400 | 0.333292 | 20.870653 |
| 2 | 0.244200 | 0.327987 | 20.580875 |
| 3 | 0.523600 | 0.325907 | 21.924394 |
| 4 | 0.445500 | 0.326386 | 20.508430 |
| 5 | 0.285700 | 0.327116 | 20.752107 |
Epoch 4, achieving WER = 20.50%| Model | WER (%) |
|---|---|
| Whisper-small (baseline) | 30.00% |
| ScreenTalk-xs (fine-tuned) | 27.00% ✅ |
pipeline:1from transformers import pipeline
2
3pipe = pipeline(
4 "automatic-speech-recognition",
5 model="fj11/ScreenTalk-xs",
6 device=0 # Run on GPU
7)
8
9result = pipe("path/to/audio.wav")
10print(result["text"])1@misc{DataLabX2025ScreenTalkXS,
2 author = {DataLabX},
3 title = {ScreenTalk-xs: ASR Model Fine-Tuned on Movie & TV Audio},
4 year = {2025},
5 publisher = {Hugging Face},
6 url = {https://huggingface.co/DataLabX/ScreenTalk-xs}
7}