legacy-datasets/common_voice
Updated • 1.35k • 144
How to use patrickvonplaten/wav2vec2-common_voice-tr-mms-demo with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="patrickvonplaten/wav2vec2-common_voice-tr-mms-demo") # Load model directly
from transformers import AutoProcessor, AutoModelForCTC
processor = AutoProcessor.from_pretrained("patrickvonplaten/wav2vec2-common_voice-tr-mms-demo")
model = AutoModelForCTC.from_pretrained("patrickvonplaten/wav2vec2-common_voice-tr-mms-demo")This model is a fine-tuned version of facebook/mms-1b-all on the COMMON_VOICE - TR 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 |
|---|---|---|---|---|
| No log | 0.92 | 100 | 0.1822 | 0.2605 |
| No log | 1.83 | 200 | 0.1620 | 0.2389 |
| No log | 2.75 | 300 | 0.1581 | 0.2318 |
| No log | 3.67 | 400 | 0.1535 | 0.2270 |