speechemotion / app.py
Nattyboi's picture
Update app.py
7850de7
raw
history blame
311 Bytes
import streamlit
# Load model directly
from transformers import AutoProcessor, Wav2Vec2ForSpeechClassification
processor = AutoProcessor.from_pretrained("r-f/wav2vec-english-speech-emotion-recognition")
model = Wav2Vec2ForSpeechClassification.from_pretrained("r-f/wav2vec-english-speech-emotion-recognition")