razhan/DOLMA-speech
Viewer • Updated • 41.7k • 148 • 1
How to use razhan/whisper-base-zza with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="razhan/whisper-base-zza") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("razhan/whisper-base-zza")
model = AutoModelForSpeechSeq2Seq.from_pretrained("razhan/whisper-base-zza")# Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("razhan/whisper-base-zza")
model = AutoModelForSpeechSeq2Seq.from_pretrained("razhan/whisper-base-zza")This model is a fine-tuned version of openai/whisper-base on the razhan/DOLMA-speech zazaki 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 |
|---|---|---|---|---|---|
| No log | 1.0 | 1 | 4.7831 | 1.2622 | 1.0146 |
| No log | 2.0 | 2 | 4.7831 | 1.2622 | 1.0146 |
| No log | 3.0 | 3 | 4.7831 | 1.2622 | 1.0146 |
| No log | 4.0 | 4 | 4.7831 | 1.2622 | 1.0146 |
| No log | 5.0 | 5 | 4.0956 | 1.2574 | 1.0132 |
Base model
openai/whisper-base
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="razhan/whisper-base-zza")