mozilla-foundation/common_voice_13_0
Updated • 2.44k • 4
How to use oceanstar/bridze with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="oceanstar/bridze") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("oceanstar/bridze")
model = AutoModelForSpeechSeq2Seq.from_pretrained("oceanstar/bridze")# Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("oceanstar/bridze")
model = AutoModelForSpeechSeq2Seq.from_pretrained("oceanstar/bridze")This model is a fine-tuned version of openai/whisper-base on the bridzeDataset 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 | Cer | Validation Loss |
|---|---|---|---|---|
| 0.3652 | 0.06 | 500 | 11.3504 | 0.3574 |
| 0.2788 | 0.13 | 1000 | 9.1325 | 0.2645 |
| 0.2213 | 0.1 | 1500 | 9.3132 | 0.2388 |
| 0.2257 | 0.13 | 2000 | 8.6295 | 0.2194 |
| 0.1941 | 0.16 | 2500 | 7.5109 | 0.2068 |
| 0.1395 | 0.19 | 3000 | 7.3247 | 0.1969 |
| 0.1787 | 0.23 | 3500 | 7.5517 | 0.1905 |
| 0.1639 | 0.26 | 4000 | 7.3894 | 0.1880 |
Base model
openai/whisper-base
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="oceanstar/bridze")