ctam8736/papi_asr
Viewer • Updated • 11.6k • 7
How to use ctam8736/whisper-tiny-es with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="ctam8736/whisper-tiny-es") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("ctam8736/whisper-tiny-es")
model = AutoModelForSpeechSeq2Seq.from_pretrained("ctam8736/whisper-tiny-es")# Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("ctam8736/whisper-tiny-es")
model = AutoModelForSpeechSeq2Seq.from_pretrained("ctam8736/whisper-tiny-es")This model is a fine-tuned version of openai/whisper-tiny on the Papi ASR Test dataset. It achieves the following results on the evaluation set:
More information needed
More information needed
More information needed
The following hyperparameters were used during training:
| Training Loss | Epoch | Step | Validation Loss | Wer |
|---|---|---|---|---|
| 0.0881 | 0.34 | 200 | 0.1414 | 23.3066 |
| 0.0563 | 0.69 | 400 | 0.1388 | 23.8738 |
| 0.0416 | 1.03 | 600 | 0.1367 | 26.2630 |
| 0.044 | 1.38 | 800 | 0.1295 | 29.1289 |
| 0.0546 | 1.72 | 1000 | 0.1243 | 29.9772 |
Base model
openai/whisper-tiny
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="ctam8736/whisper-tiny-es")