top of page

Nikodez


Naive Bayes
Théorème de Bayes : P(A/B) = P(B/A) * P(A) / P(B) Wikipédia : La classification naïve bayésienne est un type de classification bayésienne...


Naive Bayes
# -*- coding: utf-8 -*- """ Classifieur NAIVE BAYES """ import numpy as np from pylab import * from sklearn.naive_bayes import...
bottom of page