Views
No views yet
Note: EXCELLENT tier when used correctly. Derived fromihanif/whisper-medium-pashto. Verified at WER 5.3% / CER 3.2% / script-match 99.2% on 50-sample FLEURS ps_af when inference usesforced_decoder_ids(passed explicitly tomodel.generate()viaprocessor.get_decoder_prompt_ids(language='pashto', task='transcribe')). With the conveniencelanguage=kwarg the model can silently drop the Pashto token and hallucinate English script on ~30% of samples (53.7% WER artifact). Always force the decoder prompt for Pashto inference.
ct2-int8/ subfolder.1from transformers import WhisperForConditionalGeneration, WhisperProcessor
2processor = WhisperProcessor.from_pretrained("WindyWord/listen-windy-lingua-ps-ct2", subfolder="ct2-int8")
3model = WhisperForConditionalGeneration.from_pretrained("WindyWord/listen-windy-lingua-ps-ct2", subfolder="ct2-int8")