s3prl/superb
Viewer • Updated • 304k • 895 • 34
How to use anton-l/distilhubert-ft-keyword-spotting with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("audio-classification", model="anton-l/distilhubert-ft-keyword-spotting") # Load model directly
from transformers import AutoProcessor, AutoModelForAudioClassification
processor = AutoProcessor.from_pretrained("anton-l/distilhubert-ft-keyword-spotting")
model = AutoModelForAudioClassification.from_pretrained("anton-l/distilhubert-ft-keyword-spotting", device_map="auto")This model is a fine-tuned version of ntu-spml/distilhubert on the superb 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 |
|---|---|---|---|---|
| 0.8176 | 1.0 | 200 | 0.7718 | 0.8116 |
| 0.2364 | 2.0 | 400 | 0.2107 | 0.9662 |
| 0.1198 | 3.0 | 600 | 0.1374 | 0.9678 |
| 0.0891 | 4.0 | 800 | 0.1163 | 0.9706 |
| 0.085 | 5.0 | 1000 | 0.1180 | 0.9690 |