thak123 commited on
Commit
e616fac
·
1 Parent(s): 7e51e2d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -5
app.py CHANGED
@@ -102,11 +102,13 @@ def sentence_prediction(sentence):
102
 
103
 
104
 
105
- demo = gr.Interface(
106
- fn=sentence_prediction,
107
- inputs='text',
108
- outputs='label',
 
 
109
  )
110
 
111
- demo.launch()
112
 
 
102
 
103
 
104
 
105
+ interface = gr.Interface(
106
+ fn=predict_sentiment,
107
+ inputs='text',
108
+ outputs=['label'],
109
+ title='Latvian Twitter Sentiment Analysis',
110
+ description='Get the positive/neutral/negative sentiment for the given input.'
111
  )
112
 
113
+ interface.launch(inline = False)
114