Views
No views yet
| Model Configuration | CLTW | News | BBC | PC | Avg WER |
|---|---|---|---|---|---|
| Whisper Turbo (LoRA 64) | 25.7 | 23.1 | 31.5 | 27.4 | 26.9 |
| Whisper Turbo (LoRA 512) | 20.8 | 19.2 | 26.9 | 21.2 | 22.0 |
| Whisper Turbo (LoRA 512 + semi-supervised data) | 19.4 | 15.0 | 23.5 | 18.1 | 19.0 |
| Whisper Turbo (Best Config) (full fine-tuning + semi-supervised data) | 12.8 | 10.0 | 15.9 | 13.5 | 13.0 |
1from faster_whisper import WhisperModel
2
3# Load the model
4model = WhisperModel("eist-edinburgh/whisper-large-v3-turbo-gaelic-ct2")
5
6# Transcribe a Scottish Gaelic audio file
7segments, info = model.transcribe("gaelic_audio.mp3", language="cy")
8
9for segment in segments:
10 print("[%.2fs -> %.2fs] %s" % (segment.start, segment.end, segment.text))1ct2-transformers-converter --model deepdml/whisper-large-v3-turbo --output_dir faster-whisper-large-v3-turbo \
2 --copy_files tokenizer.json preprocessor_config.json --quantization float16compute_type option in CTranslate2.1@inproceedings{klejch25_interspeech,
2 title = {{A Practitioner’s Guide to Building ASR Models for Low-Resource Languages: A Case Study on Scottish Gaelic}},
3 author = {Ondřej Klejch and William Lamb and Peter Bell},
4 year = {2025},
5 booktitle = {{Interspeech 2025}},
6}