Repository: https://github.com/nok/sklearn-porter
Documentation: sklearn.naive_bayes.BernoulliNB
In [1]:
import sys
sys.path.append('../../../../..')
In [2]:
from sklearn.datasets import load_iris
iris_data = load_iris()
X = iris_data.data
y = iris_data.target
print(X.shape, y.shape)
In [3]:
from sklearn.naive_bayes import BernoulliNB
clf = BernoulliNB()
clf.fit(X, y)
Out[3]:
In [4]:
from sklearn_porter import Porter
porter = Porter(clf, language='js')
output = porter.export()
print(output)
In [5]:
# Save classifier:
# with open('BernoulliNB.js', 'w') as f:
# f.write(output)
# Run classification:
# if hash node 2/dev/null; then
# node BernoulliNB.js 1 2 3 4
# fi