Views
No views yet
whisper-large-v3-turbo fine-tune for diacritized Arabic Quran
recitation ASR) — just the CTranslate2 runtime format, which is markedly faster and lighter than the
transformers pipeline. For training details, evaluation (WER), and the dataset, see the
original model card.1from faster_whisper import WhisperModel
2
3model = WhisperModel(
4 "MaddoggProduction/whisper-l-v3-turbo-quran-lora-dataset-mix-ct2",
5 device="cuda",
6 compute_type="float16",
7)
8
9segments, info = model.transcribe("recitation.wav", language="ar", beam_size=5)
10print("duration:", info.duration)
11print(" ".join(s.text for s in segments).strip())ctranslate2==4.7.1 / faster-whisper==1.2.1. Ships tokenizer.json
(large-v3 vocab) and preprocessor_config.json (128 mel bins).