mozilla-foundation/common_voice_17_0
Updated • 5.54k • 16
How to use banglabridge/base-bn with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="banglabridge/base-bn") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("banglabridge/base-bn")
model = AutoModelForSpeechSeq2Seq.from_pretrained("banglabridge/base-bn")This model is a fine-tuned version of openai/whisper-base on the Common Voice 17.0 dataset.
It is the merged model from this fine-tuned PEFT LoRA adapter: banglabridge/base-bn-lora-adapter
It achieves the following results on the test set:
Refer to the adapter repository for more details on the finetuning: banglabridge/base-bn-lora-adapter