weightedhuman commited on
Commit
6e37b04
·
verified ·
1 Parent(s): 8a71392

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py ADDED
@@ -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()