I'm currently using scikit-learn's GaussianNB package.
I've noticed that I can choose to return results for the classification several different ways. One way to return a classification is using the predict_log_proba method.
Why would I choose to use predict_log_proba versus predict_proba versus predict?