madoss/faso-speech
Viewer • Updated • 9.08k • 43
How to use madoss/wav2vec-finetuned with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="madoss/wav2vec-finetuned") # Load model directly
from transformers import AutoProcessor, AutoModelForCTC
processor = AutoProcessor.from_pretrained("madoss/wav2vec-finetuned")
model = AutoModelForCTC.from_pretrained("madoss/wav2vec-finetuned")This model is a fine-tuned version of facebook/w2v-bert-2.0 on madoss/faso-speech.
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 |
|---|---|---|---|---|
| 2.9524 | 0.9788 | 300 | 1.1082 | 0.7286 |
| 1.8613 | 1.9560 | 600 | 0.7658 | 0.4447 |
| 1.3791 | 2.9331 | 900 | 0.6838 | 0.3803 |
| 1.0644 | 3.9103 | 1200 | 0.6384 | 0.3221 |
| 0.8971 | 4.8874 | 1500 | 0.6323 | 0.2908 |
| 0.8971 | 5.0 | 1535 | 0.6286 | 0.2902 |
Base model
facebook/w2v-bert-2.0