Roozeec commited on
Commit
fdf917e
·
1 Parent(s): 9b193d8

fix sentences

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -24,8 +24,7 @@ if st.button("Search"):
24
  df = wna.get_news(settings, query)
25
  st.dataframe(df)
26
  # get each title colums
27
-
28
- sentences = ["I am not having a great day"]
29
  model_outputs = classifier(sentences)
30
  st.write(model_outputs[0])
31
 
 
24
  df = wna.get_news(settings, query)
25
  st.dataframe(df)
26
  # get each title colums
27
+ sentences = df["title"]
 
28
  model_outputs = classifier(sentences)
29
  st.write(model_outputs[0])
30