Spaces:
Runtime error
Runtime error
print of predictions
Browse files
app.py
CHANGED
@@ -101,6 +101,7 @@ def run_sentiment_analysis (txt) :
|
|
101 |
return predictions
|
102 |
|
103 |
predictions = run_sentiment_analysis(txt)
|
|
|
104 |
for prediction in predictions:
|
105 |
-
|
106 |
|
|
|
101 |
return predictions
|
102 |
|
103 |
predictions = run_sentiment_analysis(txt)
|
104 |
+
print(predictions)
|
105 |
for prediction in predictions:
|
106 |
+
print(prediction)
|
107 |
|