Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
anyuanay
/
voice_classification
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
anyuanay
commited on
Jul 13, 2024
Commit
56e6969
·
verified
·
1 Parent(s):
d55e2e7
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+9
-0
app.py
ADDED
Viewed
@@ -0,0 +1,9 @@
1
+
import gradio as gr
2
+
3
+
def voice_classification(audio):
4
+
5
+
result = "engaging"
6
+
7
+
return result
8
+
9
+
gr.Interface(fn=voice_classification, inputs="audio", outputs="text").launch()