legacy-datasets/common_voice
Updated • 1.57k • 144
How to use rossevine/Check_Model_2 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="rossevine/Check_Model_2") # Load model directly
from transformers import AutoProcessor, AutoModelForCTC
processor = AutoProcessor.from_pretrained("rossevine/Check_Model_2")
model = AutoModelForCTC.from_pretrained("rossevine/Check_Model_2")This model is a fine-tuned version of facebook/wav2vec2-xls-r-300m on the common_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 | Wer | Cer |
|---|---|---|---|---|---|
| 3.8708 | 3.23 | 400 | 0.7345 | 0.7259 | 0.2034 |
| 0.4247 | 6.45 | 800 | 0.4128 | 0.4268 | 0.1102 |
| 0.2047 | 9.68 | 1200 | 0.3726 | 0.3795 | 0.0930 |
| 0.1422 | 12.9 | 1600 | 0.3690 | 0.3514 | 0.0884 |
| 0.1139 | 16.13 | 2000 | 0.3811 | 0.3160 | 0.0794 |
| 0.089 | 19.35 | 2400 | 0.3650 | 0.2895 | 0.0731 |
| 0.0709 | 22.58 | 2800 | 0.3629 | 0.2944 | 0.0727 |
| 0.0594 | 25.81 | 3200 | 0.3538 | 0.2779 | 0.0692 |
| 0.0478 | 29.03 | 3600 | 0.3499 | 0.2729 | 0.0673 |
Base model
facebook/wav2vec2-xls-r-300m