finetune-ar-dialects
Collection
Models for the thesis titled: "The Effects of Fine-Tuning on the ASR Performance of Dialectal Arabic". • 17 items • Updated • 3
How to use otozz/whisper-small-ar_tsize_0.2 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="otozz/whisper-small-ar_tsize_0.2") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("otozz/whisper-small-ar_tsize_0.2")
model = AutoModelForSpeechSeq2Seq.from_pretrained("otozz/whisper-small-ar_tsize_0.2")