EAV123 commited on
Commit
80bcd83
1 Parent(s): 85da704

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -121,7 +121,7 @@ def main():
121
  st.subheader('User Input:')
122
  st.write(user_input)
123
 
124
- prediction = model.predict(user_input)
125
 
126
  st.subheader('Prediction:')
127
  if prediction_proba[0] < 0.5:
 
121
  st.subheader('User Input:')
122
  st.write(user_input)
123
 
124
+ prediction_proba = model.predict(user_input)
125
 
126
  st.subheader('Prediction:')
127
  if prediction_proba[0] < 0.5: