ParthCodes commited on
Commit
77ccdf4
·
verified ·
1 Parent(s): 70884ce

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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.load("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):
 
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):