hitz02 commited on
Commit
80d04b1
1 Parent(s): 6752b05

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -86,6 +86,8 @@ if st.button('Predict Answers'):
86
  if predicted_agg == "NONE" or predicted_agg == 'COUNT':
87
  st.markdown('**>** '+str(answer))
88
  else:
 
 
89
  if predicted_agg == 'SUM':
90
  st.markdown('**>** '+str(sum(answer.split(','))))
91
  else:
 
86
  if predicted_agg == "NONE" or predicted_agg == 'COUNT':
87
  st.markdown('**>** '+str(answer))
88
  else:
89
+ st.write(predicted_agg)
90
+ st.write(answer)
91
  if predicted_agg == 'SUM':
92
  st.markdown('**>** '+str(sum(answer.split(','))))
93
  else: