MLCommons/peoples_speech
Viewer • Updated • 8.05M • 38.3k • 268
How to use itsally/Dataset with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="itsally/Dataset") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("itsally/Dataset")
model = AutoModelForSpeechSeq2Seq.from_pretrained("itsally/Dataset")# Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("itsally/Dataset")
model = AutoModelForSpeechSeq2Seq.from_pretrained("itsally/Dataset")This model is a fine-tuned version of openai/whisper-small on the Peoples Speech 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.0071 | 2.0 | 100 | 0.5080 | 14.2950 |
| 0.006 | 4.0 | 200 | 0.4859 | 14.1645 |
| 0.0012 | 6.0 | 300 | 0.4997 | 14.3603 |
| 0.0002 | 8.0 | 400 | 0.5017 | 14.4582 |
| 0.0005 | 10.0 | 500 | 0.5068 | 14.7846 |
Base model
openai/whisper-small
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="itsally/Dataset")