#Prediction Score 0-10?
6 messages · Page 1 of 1 (latest)
If you are doing binary (yes/no) classification, you'd usually have a softmax layer at the very end. So if you specify sale as 1, and no-sale as 0, the network will actually return to you a float between 0.0-1.0.
With some care, that float can be treated as a probability, or confidence the network has in the prediction, so you can interpret 0.85 as "8.5", or "pretty confident".
And this is somehow superior to rf.predict_proba(X_test) ?
well, you are talking about an implementation, and I'm talking about the theory 🙂
if you are using predict_proba, how about you multiply it by 10 and call it a "score" then?
Likely will, thanks for the help 👍