Automatic Speech Recognition
Transformers
PyTorch
TensorBoard
whisper
whisper-event
Generated from Trainer
hf-asr-leaderboard
pashto
ps
Eval Results (legacy)
Instructions to use ihanif/whisper-medium-pashto with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ihanif/whisper-medium-pashto with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="ihanif/whisper-medium-pashto")# Load model directly from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq processor = AutoProcessor.from_pretrained("ihanif/whisper-medium-pashto") model = AutoModelForSpeechSeq2Seq.from_pretrained("ihanif/whisper-medium-pashto") - Notebooks
- Google Colab
- Kaggle
| python run_speech_recognition_seq2seq_streaming.py \ | |
| --model_name_or_path="openai/whisper-medium" \ | |
| --dataset_name="google/fleurs" \ | |
| --dataset_config_name="ps_af" \ | |
| --language="pashto" \ | |
| --train_split_name="train+validation" \ | |
| --eval_split_name="test" \ | |
| --model_index_name="Whisper Medium Pashto" \ | |
| --max_steps="1000" \ | |
| --output_dir="./" \ | |
| --per_device_train_batch_size="32" \ | |
| --per_device_eval_batch_size="16" \ | |
| --gradient_accumulation_steps="2" \ | |
| --logging_steps="25" \ | |
| --learning_rate="1e-5" \ | |
| --warmup_steps="50" \ | |
| --evaluation_strategy="steps" \ | |
| --eval_steps="100" \ | |
| --save_strategy="steps" \ | |
| --save_steps="100" \ | |
| --generation_max_length="225" \ | |
| --length_column_name="input_length" \ | |
| --max_duration_in_seconds="30" \ | |
| --text_column_name="transcription" \ | |
| --freeze_feature_encoder="False" \ | |
| --report_to="tensorboard" \ | |
| --metric_for_best_model="wer" \ | |
| --gradient_checkpointing \ | |
| --fp16 \ | |
| --overwrite_output_dir \ | |
| --do_train \ | |
| --do_eval \ | |
| --predict_with_generate \ | |
| --do_normalize_eval \ | |
| --use_auth_token \ | |
| --streaming="False" \ | |
| --push_to_hub | |