gaspar-avit commited on
Commit
60319f9
·
1 Parent(s): 1b3d335

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -201,7 +201,7 @@ def generate_prediction(input_data):
201
  # prediction = MODEL.predict(input_data)
202
  proba = MODEL.predict_proba(input_data)
203
  st.write(proba)
204
- #st.write(proba[1])
205
  st.write(proba.shape)
206
 
207
  '''
 
201
  # prediction = MODEL.predict(input_data)
202
  proba = MODEL.predict_proba(input_data)
203
  st.write(proba)
204
+ st.write(proba[0,1])
205
  st.write(proba.shape)
206
 
207
  '''