DragonLine/ksponspeech_04
Viewer • Updated • 124k • 753
How to use DragonLine/train04 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="DragonLine/train04") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("DragonLine/train04")
model = AutoModelForSpeechSeq2Seq.from_pretrained("DragonLine/train04")# Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("DragonLine/train04")
model = AutoModelForSpeechSeq2Seq.from_pretrained("DragonLine/train04")This model is a fine-tuned version of openai/whisper-base on the ksponspeech_04 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 | Cer |
|---|---|---|---|---|
| 0.4513 | 0.13 | 100 | 0.4522 | 15.1448 |
| 0.4537 | 0.26 | 200 | 0.4484 | 14.7932 |
| 0.4419 | 0.39 | 300 | 0.4439 | 14.4669 |
| 0.4402 | 0.52 | 400 | 0.4399 | 14.8185 |
| 0.4397 | 0.65 | 500 | 0.4353 | 14.4394 |
| 0.4359 | 0.77 | 600 | 0.4282 | 14.0848 |
| 0.4245 | 0.9 | 700 | 0.4226 | 14.6674 |
Base model
openai/whisper-base
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="DragonLine/train04")