Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import numpy as np
- import matplotlib.pyplot as plt
- from sklearn.tree import DecisionTreeClassifier
- from sklearn.datasets import load_iris
- from sklearn.model_selection import train_test_split
- from matplotlib.colors import ListedColormap
- # Загрузка датасета ириса Фишера
- iris = load_iris()
- X = iris.data[:, [2, 3]] # используем только два признака для визуализации
- y = iris.target
- # Разделение данных на обучающую и тестовую выборки
- X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.3, random_state=1)
- # Обучение модели решающего дерева
- tree_model = DecisionTreeClassifier(max_depth=3)
- tree_model.fit(X_train, y_train)
- # Визуализация границ решения
- x_min, x_max = X[:, 0].min() - 1, X[:, 0].max() + 1
- y_min, y_max = X[:, 1].min() - 1, X[:, 1].max() + 1
- xx, yy = np.meshgrid(np.arange(x_min, x_max, 0.01),
- np.arange(y_min, y_max, 0.01))
- Z = tree_model.predict(np.c_[xx.ravel(), yy.ravel()])
- Z = Z.reshape(xx.shape)
- # Создание цветовой карты
- cmap_light = ListedColormap(['#FFAAAA', '#AAFFAA', '#AAAAFF'])
- cmap_bold = ListedColormap(['#FF0000', '#00FF00', '#0000FF'])
- # Визуализация результата
- plt.figure(figsize=(10, 6))
- plt.contourf(xx, yy, Z, alpha=0.4, cmap=cmap_light)
- plt.scatter(X[:, 0], X[:, 1], c=y, cmap=cmap_bold, edgecolor='k', s=20)
- plt.xlim(xx.min(), xx.max())
- plt.ylim(yy.min(), yy.max())
- plt.title("Классификация ирисов с помощью решающего дерева")
- plt.xlabel(iris.feature_names[2])
- plt.ylabel(iris.feature_names[3])
- plt.show()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement