Training in progress, epoch 1 bdf562d
Derek Thomas commited on
How to use derek-thomas/Hubert_emotion-finetuned-gtzan-efficient with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("audio-classification", model="derek-thomas/Hubert_emotion-finetuned-gtzan-efficient") # Load model directly
from transformers import AutoProcessor, AutoModelForAudioClassification
processor = AutoProcessor.from_pretrained("derek-thomas/Hubert_emotion-finetuned-gtzan-efficient")
model = AutoModelForAudioClassification.from_pretrained("derek-thomas/Hubert_emotion-finetuned-gtzan-efficient", device_map="auto")