DrishtiSharma commited on
Commit
845a206
·
1 Parent(s): 17ef24f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -4
app.py CHANGED
@@ -2,10 +2,11 @@
2
  import gradio as gr
3
  from transformers import pipeline
4
 
5
- Model_1 = "hackathon-pln-es/wav2vec2-base-finetuned-sentiment-classification-MESD"
6
- Model_2 ="hackathon-pln-es/wav2vec2-base-finetuned-sentiment-mesd"
7
- def classify_sentiment(audio, model):
8
- pipe = pipeline("audio-classification", model=model)
 
9
  pred = pipe(audio)
10
  return {dic["label"]: dic["score"] for dic in pred}
11
 
 
2
  import gradio as gr
3
  from transformers import pipeline
4
 
5
+ #Model_1 = "hackathon-pln-es/wav2vec2-base-finetuned-sentiment-classification-MESD"
6
+ #Model_2 ="hackathon-pln-es/wav2vec2-base-finetuned-sentiment-mesd"
7
+
8
+ def classify_sentiment(audio):
9
+ pipe = pipeline("audio-classification", model="hackathon-pln-es/wav2vec2-base-finetuned-sentiment-classification-MESD")
10
  pred = pipe(audio)
11
  return {dic["label"]: dic["score"] for dic in pred}
12