google/fleurs
Viewer • Updated • 768k • 99.2k • 445
How to use Tun-Wellens/whisper-medium-lb-excluded with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="Tun-Wellens/whisper-medium-lb-excluded") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("Tun-Wellens/whisper-medium-lb-excluded")
model = AutoModelForSpeechSeq2Seq.from_pretrained("Tun-Wellens/whisper-medium-lb-excluded", device_map="auto")This is a fine-tuned version of OpenAI's Whisper medium model for Luxembourgish Automatic Speech Recognition (ASR).
Fine-tuned using a combination of Luxembourgish datasets:
Training was tracked using Weights & Biases (W&B) and performed with Hugging Face Transformers.
Base model
openai/whisper-medium