Transformers How to use abletobetable/ast-emotion with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("audio-classification", model="abletobetable/ast-emotion") # Load model directly
from transformers import AutoFeatureExtractor, AutoModelForAudioClassification
extractor = AutoFeatureExtractor.from_pretrained("abletobetable/ast-emotion")
model = AutoModelForAudioClassification.from_pretrained("abletobetable/ast-emotion")