Ok, predict proba gives an array of shape no of rows X 2 columns. The 1st column represents probability of 0, 2nd probability of 1(which in our case is probability of Churn needed for an AUC metric).
Run predict_proba(test)[:, 1] and see if it fixes your situation
Make sure your submission file contains probabilities between 0 and 1 inclusive.
i made use of predict_proba but still same result on leaderboard
Are you getting any errors while working or it's simply the score that is not showing properly?
It is simply the scores that is not showing up properly
Hello, do you run predict_proba[:, 1] or this one [:,0] for your submission?
I ran only predict_proba(test)
Ok, predict proba gives an array of shape no of rows X 2 columns. The 1st column represents probability of 0, 2nd probability of 1(which in our case is probability of Churn needed for an AUC metric).
Run predict_proba(test)[:, 1] and see if it fixes your situation
Thank you so much,
It fixed it
Cheers!