DrishtiSharma
commited on
Commit
•
ed5e7fb
1
Parent(s):
b8d5ff4
Update app.py
Browse files
app.py
CHANGED
@@ -32,7 +32,7 @@ def predict_and_ctc_lm_decode(input_file):
|
|
32 |
harassment_detection = pipe3(transcribed_text)
|
33 |
harassment_detection={dic["label"]: dic["score"] for dic in harassment_detection}
|
34 |
#harassment_detection = np.where(harassment_detection['label']== 0, 'No Harassment', 'Harassment')
|
35 |
-
return
|
36 |
#sexism_detection, harassment_detection
|
37 |
|
38 |
gr.Interface(
|
@@ -42,7 +42,7 @@ gr.Interface(
|
|
42 |
],
|
43 |
#outputs=[gr.outputs.Label(num_top_classes=2),gr.outputs.Label(num_top_classes=2), gr.outputs.Label(num_top_classes=2)],
|
44 |
outputs=[gr.outputs.Label(num_top_classes=2)],
|
45 |
-
examples=[["
|
46 |
title="Sentiment Analysis of Spanish Transcribed Audio",
|
47 |
description="This is a Gradio demo for Sentiment Analysis of Transcribed Spanish Audio",
|
48 |
layout="horizontal",
|
|
|
32 |
harassment_detection = pipe3(transcribed_text)
|
33 |
harassment_detection={dic["label"]: dic["score"] for dic in harassment_detection}
|
34 |
#harassment_detection = np.where(harassment_detection['label']== 0, 'No Harassment', 'Harassment')
|
35 |
+
return harassment_detection
|
36 |
#sexism_detection, harassment_detection
|
37 |
|
38 |
gr.Interface(
|
|
|
42 |
],
|
43 |
#outputs=[gr.outputs.Label(num_top_classes=2),gr.outputs.Label(num_top_classes=2), gr.outputs.Label(num_top_classes=2)],
|
44 |
outputs=[gr.outputs.Label(num_top_classes=2)],
|
45 |
+
examples=[["audio_test.wav"]],
|
46 |
title="Sentiment Analysis of Spanish Transcribed Audio",
|
47 |
description="This is a Gradio demo for Sentiment Analysis of Transcribed Spanish Audio",
|
48 |
layout="horizontal",
|