This is the base Urdu ASR model being used as our Stage 1 teacher.
The base model is already well-trained on Urdu ASR. When hardware resources
are limited, it's valid to use the base model directly as the Stage 1 teacher
and proceed to multi-task training (Stage 2).
This model will be used in Phase 4 for multi-task training (emotion + gender).
1from transformers import Wav2Vec2ForCTC, Wav2Vec2Processor
2
3processor = Wav2Vec2Processor.from_pretrained("abidanoaman/urdu-teacher-stage1-asr")
4model = Wav2Vec2ForCTC.from_pretrained("abidanoaman/urdu-teacher-stage1-asr")
Load this model in Phase 4 (Teacher Stage 2) for multi-task training.