the output of my classifier after calling model.predict_proba() gives two columns probability that it is a 0 and probability that its
a one
how do I make it to have a value between 0 and 1 as required?
predict_proba(test)[:,1]
Thank you so much
predict_proba(test)[:,1]
Thank you so much