Update streamlit_app.py
Browse files- streamlit_app.py +1 -1
streamlit_app.py
CHANGED
|
@@ -52,7 +52,7 @@ if uploaded_file is not None:
|
|
| 52 |
|
| 53 |
# Classify
|
| 54 |
predictions = []
|
| 55 |
-
for text in df['
|
| 56 |
if text.strip() == "":
|
| 57 |
predictions.append("Unknown")
|
| 58 |
else:
|
|
|
|
| 52 |
|
| 53 |
# Classify
|
| 54 |
predictions = []
|
| 55 |
+
for text in df['content']:
|
| 56 |
if text.strip() == "":
|
| 57 |
predictions.append("Unknown")
|
| 58 |
else:
|