google/speech_commands
Updated • 3.16k • 59
How to use dhaselhan/audio-commands with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("audio-classification", model="dhaselhan/audio-commands") # Load model directly
from transformers import AutoFeatureExtractor, AutoModelForAudioClassification
extractor = AutoFeatureExtractor.from_pretrained("dhaselhan/audio-commands")
model = AutoModelForAudioClassification.from_pretrained("dhaselhan/audio-commands")# Load model directly
from transformers import AutoFeatureExtractor, AutoModelForAudioClassification
extractor = AutoFeatureExtractor.from_pretrained("dhaselhan/audio-commands")
model = AutoModelForAudioClassification.from_pretrained("dhaselhan/audio-commands")This model is a fine-tuned version of MIT/ast-finetuned-speech-commands-v2 on the speech_commands 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.0581 | 1.0 | 663 | 0.4816 | 0.8975 |
| 0.0454 | 2.0 | 1326 | 0.4184 | 0.9024 |
| 0.0404 | 3.0 | 1989 | 0.4361 | 0.9010 |
| 0.025 | 4.0 | 2653 | 0.4368 | 0.9016 |
| 0.0169 | 5.0 | 3316 | 0.3692 | 0.9173 |
| 0.0173 | 6.0 | 3979 | 0.4131 | 0.9173 |
| 0.0096 | 7.0 | 4642 | 0.3800 | 0.9177 |
| 0.0022 | 8.0 | 5306 | 0.3535 | 0.9264 |
| 0.0031 | 9.0 | 5969 | 0.3241 | 0.9315 |
| 0.0008 | 10.0 | 6632 | 0.3697 | 0.9236 |
| 0.0002 | 11.0 | 7295 | 0.4189 | 0.9173 |
| 0.001 | 12.0 | 7959 | 0.3206 | 0.9287 |
| 0.0003 | 13.0 | 8622 | 0.3794 | 0.9205 |
| 0.0003 | 14.0 | 9285 | 0.3999 | 0.9199 |
| 0.0 | 15.0 | 9948 | 0.4002 | 0.9220 |
| 0.0 | 16.0 | 10612 | 0.3896 | 0.9248 |
| 0.0001 | 17.0 | 11275 | 0.3930 | 0.9248 |
| 0.0 | 18.0 | 11938 | 0.3952 | 0.9254 |
| 0.0 | 19.0 | 12601 | 0.3971 | 0.9254 |
| 0.0 | 19.99 | 13260 | 0.3977 | 0.9256 |
Base model
MIT/ast-finetuned-speech-commands-v2
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("audio-classification", model="dhaselhan/audio-commands")