lucasvmigotto/audio-emotions-collection
Viewer • Updated • 12.2k • 32
How to use lucasvmigotto/whisper-small-audio-emotion-classification with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("audio-classification", model="lucasvmigotto/whisper-small-audio-emotion-classification") # Load model directly
from transformers import AutoProcessor, AutoModelForAudioClassification
processor = AutoProcessor.from_pretrained("lucasvmigotto/whisper-small-audio-emotion-classification")
model = AutoModelForAudioClassification.from_pretrained("lucasvmigotto/whisper-small-audio-emotion-classification", device_map="auto")This model is a fine-tuned version of openai/whisper-small on the Audio Emotions Collection 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 |
|---|---|---|---|
| 0.672 | 1.0 | 685 | 0.7548 |
| 0.4456 | 2.0 | 1370 | 0.6081 |
| 0.2742 | 3.0 | 2055 | 0.5351 |
| 0.2174 | 4.0 | 2740 | 0.7506 |
| 0.0612 | 5.0 | 3425 | 1.0163 |
| 0.0661 | 6.0 | 4110 | 0.9165 |
| 0.0276 | 7.0 | 4795 | 0.9554 |
| 0.0007 | 7.2993 | 5000 | 0.9543 |
Base model
openai/whisper-small