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