“Skit изучить решение” Ответ

Skit изучить решение

from sklearn.datasets import load_iris
from sklearn.tree import DecisionTreeClassifier
from sklearn.tree import export_text
iris = load_iris()
decision_tree = DecisionTreeClassifier(random_state=0, max_depth=2)
decision_tree = decision_tree.fit(iris.data, iris.target)
r = export_text(decision_tree, feature_names=iris['feature_names'])
print(r)


Uninterested Unicorn

Skit изучить решение

tree.plot_tree(clf) 
Uninterested Unicorn

Skit изучить решение

import graphviz 
dot_data = tree.export_graphviz(clf, out_file=None) 
graph = graphviz.Source(dot_data) 
graph.render("iris") 
Uninterested Unicorn

Skit изучить решение

clf.predict([[2., 2.]])
Uninterested Unicorn

Skit изучить решение

from sklearn.datasets import load_iris
from sklearn import tree
X, y = load_iris(return_X_y=True)
clf = tree.DecisionTreeClassifier()
clf = clf.fit(X, y)
Uninterested Unicorn

Ответы похожие на “Skit изучить решение”

Вопросы похожие на “Skit изучить решение”

Больше похожих ответов на “Skit изучить решение” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования