天天看点

朴素贝叶斯模型代码

朴素贝叶斯模型代码

from sklearn.naive_bayes import GaussianNB

nb_clf = GaussianNB() # 高斯朴素贝叶斯模型

nb_clf.fit(X_train,y_train)