marsyas/gtzan
Updated • 1.91k • 17
How to use rcodina/exemple3 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("audio-classification", model="rcodina/exemple3") # Load model directly
from transformers import AutoProcessor, AutoModelForAudioClassification
processor = AutoProcessor.from_pretrained("rcodina/exemple3")
model = AutoModelForAudioClassification.from_pretrained("rcodina/exemple3")# Load model directly
from transformers import AutoProcessor, AutoModelForAudioClassification
processor = AutoProcessor.from_pretrained("rcodina/exemple3")
model = AutoModelForAudioClassification.from_pretrained("rcodina/exemple3")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 |
|---|---|---|---|---|
| 2.3832 | 1.0 | 15 | 2.2895 | 0.1 |
| 2.2049 | 2.0 | 30 | 2.2569 | 0.3 |
Base model
ntu-spml/distilhubert
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("audio-classification", model="rcodina/exemple3")