Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -5,7 +5,7 @@ import gradio as gr
|
|
5 |
import whisper_timestamped as whisper
|
6 |
from transformers import pipeline
|
7 |
|
8 |
-
model = whisper.
|
9 |
sentiment_analysis = pipeline("sentiment-analysis", framework="pt", model="SamLowe/roberta-base-go_emotions", use_fast=True)
|
10 |
|
11 |
def analyze_sentiment(text):
|
|
|
5 |
import whisper_timestamped as whisper
|
6 |
from transformers import pipeline
|
7 |
|
8 |
+
model = whisper.load_model("small", device="cpu")
|
9 |
sentiment_analysis = pipeline("sentiment-analysis", framework="pt", model="SamLowe/roberta-base-go_emotions", use_fast=True)
|
10 |
|
11 |
def analyze_sentiment(text):
|