speechbrain/common_language
Updated • 453 • 43
How to use Ranjit/whisper-small-lang-id with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("audio-classification", model="Ranjit/whisper-small-lang-id") # Load model directly
from transformers import AutoProcessor, AutoModelForAudioClassification
processor = AutoProcessor.from_pretrained("Ranjit/whisper-small-lang-id")
model = AutoModelForAudioClassification.from_pretrained("Ranjit/whisper-small-lang-id")This model is a fine-tuned version of openai/whisper-small on the common_language 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 | Accuracy |
|---|---|---|---|---|
| 1.4103 | 1.0 | 694 | 1.1299 | 0.7471 |
| 0.5324 | 2.0 | 1388 | 0.6167 | 0.8495 |
| 0.3164 | 3.0 | 2082 | 0.5136 | 0.8679 |
| 0.1535 | 4.0 | 2776 | 0.5264 | 0.8758 |
| 0.1018 | 5.0 | 3470 | 0.5890 | 0.8767 |
| 0.0555 | 6.0 | 4164 | 0.6121 | 0.8772 |
| 0.031 | 7.0 | 4858 | 0.6624 | 0.8777 |
| 0.0264 | 8.0 | 5552 | 0.6172 | 0.8869 |
| 0.0079 | 9.0 | 6246 | 0.6225 | 0.8884 |
| 0.0058 | 10.0 | 6940 | 0.6339 | 0.8898 |