naive bayes - taoualiw/My-Knowledge-Base GitHub Wiki
- Bayes Rule:
P(B/C)=P(C/B)*P(B)/P(C)
- It is naive because it ignores the possibility if dependency between features, order...
- Decision Boundary: a (piecewise) quadratic decision boundary for the Gaussian model.
from sklearn.naive_bayes import GaussianNB