Transformers How to use Non-playing-Character/emotion-speech with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("audio-classification", model="Non-playing-Character/emotion-speech") # Load model directly
from transformers import AutoProcessor, AutoModelForAudioClassification
processor = AutoProcessor.from_pretrained("Non-playing-Character/emotion-speech")
model = AutoModelForAudioClassification.from_pretrained("Non-playing-Character/emotion-speech")