kalebu commited on
Commit
112af39
·
1 Parent(s): 41c442c

fixed indexing error

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -6,7 +6,7 @@ model = joblib.load("model.pkl")
6
 
7
 
8
  def get_sentiment(input_text):
9
- return model.predict([input_text][0].capitalize())
10
 
11
 
12
  iface = gr.Interface(
 
6
 
7
 
8
  def get_sentiment(input_text):
9
+ return model.predict([input_text])[0].capitalize()
10
 
11
 
12
  iface = gr.Interface(