legacy-datasets/common_voice
Updated • 2.25k • 147
How to use Siyam/Dansk-wav2vec2-stt with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="Siyam/Dansk-wav2vec2-stt") # Load model directly
from transformers import AutoProcessor, AutoModelForCTC
processor = AutoProcessor.from_pretrained("Siyam/Dansk-wav2vec2-stt")
model = AutoModelForCTC.from_pretrained("Siyam/Dansk-wav2vec2-stt", device_map="auto")This model is a fine-tuned version of Siyam/Dansk-wav2vec21 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 |
|---|---|---|---|---|
| 0.0298 | 4.26 | 400 | 0.8420 | 0.4579 |
| 0.0479 | 8.51 | 800 | 0.8713 | 0.4461 |
| 0.0387 | 12.77 | 1200 | 0.8307 | 0.4404 |
| 0.0336 | 17.02 | 1600 | 0.8322 | 0.4144 |
| 0.0322 | 21.28 | 2000 | 0.7493 | 0.4081 |
| 0.0288 | 25.53 | 2400 | 0.7361 | 0.3951 |
| 0.0264 | 29.79 | 2800 | 0.7500 | 0.3929 |