项目作者: Freakwill

项目描述 :
ensemble classifier with naive bayes combination
高级语言: Python
项目地址: git://github.com/Freakwill/nb-combination.git
创建时间: 2020-06-08T12:41:41Z
项目社区:https://github.com/Freakwill/nb-combination

开源协议:MIT License

下载


nb-combination

ensemble classifier with naive bayes combination

The algorithm is implemented in nb_comb.py

Download

Just download it from github.

use

just run script.py and have a look at the source code.

Example

  1. X=np.array([[1,2,3.1],[2,2,2.3],[1,1,1.1], [1,1,2.1]])
  2. Y= [0,1,0,1]
  3. from sklearn.naive_bayes import *
  4. estimators = [('multinomial', MultinomialNB()), ('gauss', GaussianNB())]
  5. model = NBAdditive(estimators)
  6. model.fit(X, Y, inds=[[0,1], [2]])
  7. print(model.predict(X))