Views
No views yet
NCAIR1/NigerianAccentedEnglish
for Nigerian Pidgin automatic speech recognition. The base model handles Nigerian-accented
English; this adapter teaches it the structural particles of Pidgin that the base model
mistranscribes as English equivalents.asr-nigerian-pidgin/nigerian-pidgin-1.0:checkpoint-500, selected by a checkpoint sweep — it outperformed both
checkpoint-400 (32.19%) and checkpoint-510 (31.72%). The regression at step 510 indicates
the final training steps overfit; the best saved checkpoint is step 500.1from transformers import WhisperForConditionalGeneration, WhisperProcessor
2from peft import PeftModel
3
4BASE = "NCAIR1/NigerianAccentedEnglish"
5processor = WhisperProcessor.from_pretrained(BASE)
6base = WhisperForConditionalGeneration.from_pretrained(BASE, use_safetensors=False)
7model = PeftModel.from_pretrained(base, "%s").merge_and_unload()