Ginidu2003 commited on
Commit
dcb33bd
·
verified ·
1 Parent(s): c3697dc

Update streamlit_app.py

Browse files
Files changed (1) hide show
  1. 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['clean_content']:
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: