Daniton commited on
Commit
08ad2b4
·
1 Parent(s): 9850345

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -12,7 +12,6 @@ def predict_sentiment(sentence):
12
  else:
13
  return 'Negative'
14
 
15
- gr.Interface(predict_sentiment, inputs=gr.inputs.Textbox(lines=1, label='Enter your Review')).launch()
16
-
17
 
18
 
 
12
  else:
13
  return 'Negative'
14
 
15
+ gr.Interface(predict_sentiment, inputs=gr.inputs.Textbox(lines=1, label='Enter your Review'), outputs=gr.outputs.Textbox(label='Sentiment Analysis')).launch()
 
16
 
17