Spaces:
Runtime error
Runtime error
fixed indexing error
Browse files
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(
|