Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
weightedhuman
/
vibely
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
weightedhuman
commited on
Mar 7, 2024
Commit
6e37b04
·
verified
·
1 Parent(s):
8a71392
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+7
-0
app.py
ADDED
Viewed
@@ -0,0 +1,7 @@
1
+
intf = gr.Interface(
2
+
fn = get_sentiment_score,
3
+
inputs = gr.Textbox(),
4
+
outputs = gr.Label()
5
+
)
6
+
7
+
intf.launch()