I used MultinomialNB()
from scikit-learn
. Using predict_proba
, how can I interpret these probabilites? My initial guess was: a probability of 0.8 means that the classifier is 80% certain that class X is the right class.
I found a related question, but no answers were provided.