Whisper Base Placeholder (ASR Fine-Tuning Demo)
This repo temporarily hosts the OpenAI Whisper Base model for testing the ASR demo Space. It will later be replaced by my fine-tuned checkpoint.
πͺ Usage
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="openai/whisper-base")
result = pipe("sample.wav")
print(result["text"])