kohoutck/combined_audio
Viewer • Updated • 676 • 7
How to use kohoutck/whisper-small-capstone with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="kohoutck/whisper-small-capstone") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("kohoutck/whisper-small-capstone")
model = AutoModelForSpeechSeq2Seq.from_pretrained("kohoutck/whisper-small-capstone")This model is a fine-tuned version of openai/whisper-small on the self collected 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.0142 | 5.9172 | 1000 | 0.0121 | 1.8005 |
| 0.0002 | 11.8343 | 2000 | 0.0003 | 0.0973 |
| 0.0002 | 17.7515 | 3000 | 0.0011 | 0.1703 |
| 0.0001 | 23.6686 | 4000 | 0.0001 | 0.0973 |
Base model
openai/whisper-small