Upload with huggingface_hub
Browse files- README.md +5 -6
- requirements.txt +2 -0
- run.py +32 -0
README.md
CHANGED
@@ -1,12 +1,11 @@
|
|
|
|
1 |
---
|
2 |
-
title:
|
3 |
-
emoji:
|
4 |
-
colorFrom:
|
5 |
colorTo: indigo
|
6 |
sdk: gradio
|
7 |
sdk_version: 3.6
|
8 |
-
app_file:
|
9 |
pinned: false
|
10 |
---
|
11 |
-
|
12 |
-
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
1 |
+
|
2 |
---
|
3 |
+
title: blocks_speech_text_sentiment_main
|
4 |
+
emoji: 🔥
|
5 |
+
colorFrom: indigo
|
6 |
colorTo: indigo
|
7 |
sdk: gradio
|
8 |
sdk_version: 3.6
|
9 |
+
app_file: run.py
|
10 |
pinned: false
|
11 |
---
|
|
|
|
requirements.txt
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
torch
|
2 |
+
transformershttps://gradio-main-build.s3.amazonaws.com/c3bec6153737855510542e8154391f328ac72606/gradio-3.6-py3-none-any.whl
|
run.py
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from transformers import pipeline
|
2 |
+
|
3 |
+
import gradio as gr
|
4 |
+
|
5 |
+
asr = pipeline("automatic-speech-recognition", "facebook/wav2vec2-base-960h")
|
6 |
+
classifier = pipeline("text-classification")
|
7 |
+
|
8 |
+
|
9 |
+
def speech_to_text(speech):
|
10 |
+
text = asr(speech)["text"]
|
11 |
+
return text
|
12 |
+
|
13 |
+
|
14 |
+
def text_to_sentiment(text):
|
15 |
+
return classifier(text)[0]["label"]
|
16 |
+
|
17 |
+
|
18 |
+
demo = gr.Blocks()
|
19 |
+
|
20 |
+
with demo:
|
21 |
+
audio_file = gr.Audio(type="filepath")
|
22 |
+
text = gr.Textbox()
|
23 |
+
label = gr.Label()
|
24 |
+
|
25 |
+
b1 = gr.Button("Recognize Speech")
|
26 |
+
b2 = gr.Button("Classify Sentiment")
|
27 |
+
|
28 |
+
b1.click(speech_to_text, inputs=audio_file, outputs=text)
|
29 |
+
b2.click(text_to_sentiment, inputs=text, outputs=label)
|
30 |
+
|
31 |
+
if __name__ == "__main__":
|
32 |
+
demo.launch()
|