xppast/voice
Viewer • Updated • 42 • 7
How to use xppast/voice with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="xppast/voice") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("xppast/voice")
model = AutoModelForSpeechSeq2Seq.from_pretrained("xppast/voice")# Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("xppast/voice")
model = AutoModelForSpeechSeq2Seq.from_pretrained("xppast/voice")This model is a fine-tuned version of openai/whisper-base on the xppast/voice 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.0146 | 33.33 | 100 | 1.4532 | 35.5556 |
| 0.0034 | 66.67 | 200 | 1.5364 | 40.8889 |
| 0.0013 | 100.0 | 300 | 1.5890 | 41.3333 |
| 0.0007 | 133.33 | 400 | 1.6485 | 40.4444 |
Base model
openai/whisper-base
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="xppast/voice")