mangoo111/eval
Viewer • Updated • 6.92k • 14
How to use mangoo111/eval with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="mangoo111/eval") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("mangoo111/eval")
model = AutoModelForSpeechSeq2Seq.from_pretrained("mangoo111/eval")# Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("mangoo111/eval")
model = AutoModelForSpeechSeq2Seq.from_pretrained("mangoo111/eval")This model is a fine-tuned version of openai/whisper-base on the mangoo111/eval 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 | Cer |
|---|---|---|---|---|
| 0.0266 | 2.8818 | 1000 | 0.0650 | 2.6964 |
| 0.0019 | 5.7637 | 2000 | 0.0551 | 2.1164 |
| 0.0011 | 8.6455 | 3000 | 0.0539 | 2.2336 |
| 0.0008 | 11.5274 | 4000 | 0.0539 | 2.2521 |
Base model
openai/whisper-base
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="mangoo111/eval")