Repository: https://github.com/nok/sklearn-porter
Documentation: sklearn.tree.DecisionTreeClassifier
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.tree import tree
clf = tree.DecisionTreeClassifier()
clf.fit(X, y)
Out[3]:
In [4]:
from sklearn_porter import Porter
porter = Porter(clf, language='go')
output = porter.export(embed_data=True)
print(output)