yoniLavi
0
Q:

google scikit learn decision tree

>>> from sklearn import tree
>>> X = [[0, 0], [1, 1]]
>>> Y = [0, 1]
>>> clf = tree.DecisionTreeClassifier()
>>> clf = clf.fit(X, Y)
0

New to Communities?

Join the community