marsyas/gtzan
Updated • 1.76k • 17
How to use vpingale07/distilhubert-v2 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("audio-classification", model="vpingale07/distilhubert-v2") # Load model directly
from transformers import AutoProcessor, AutoModelForAudioClassification
processor = AutoProcessor.from_pretrained("vpingale07/distilhubert-v2")
model = AutoModelForAudioClassification.from_pretrained("vpingale07/distilhubert-v2")This model is a fine-tuned version of ntu-spml/distilhubert on the GTZAN 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.7381 | 1.0 | 100 | 1.7586 | 0.555 |
| 1.2943 | 2.0 | 200 | 1.3345 | 0.665 |
| 1.0798 | 3.0 | 300 | 1.1992 | 0.69 |
| 0.8267 | 4.0 | 400 | 1.0985 | 0.715 |
Base model
ntu-spml/distilhubert