DTU54DL/common-accent
Viewer • Updated • 10.5k • 207 • 10
How to use Wishwa98/ASRCOMMONACCENT_LessEpoch with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="Wishwa98/ASRCOMMONACCENT_LessEpoch") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("Wishwa98/ASRCOMMONACCENT_LessEpoch")
model = AutoModelForSpeechSeq2Seq.from_pretrained("Wishwa98/ASRCOMMONACCENT_LessEpoch")# Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("Wishwa98/ASRCOMMONACCENT_LessEpoch")
model = AutoModelForSpeechSeq2Seq.from_pretrained("Wishwa98/ASRCOMMONACCENT_LessEpoch")This model is a fine-tuned version of openai/whisper-small on the Common Accent 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 Ortho | Wer |
|---|---|---|---|---|---|
| 0.1011 | 1.14 | 500 | 0.3213 | 16.2560 | 11.5126 |
Base model
openai/whisper-small
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="Wishwa98/ASRCOMMONACCENT_LessEpoch")