Advertisement
Guest User

Untitled

a guest
Oct 16th, 2019
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.00 KB | None | 0 0
  1. import matplotlib.pyplot as plt
  2. import numpy as np
  3. from matplotlib.colors import ListedColormap
  4. from sklearn import datasets, metrics
  5. from sklearn.ensemble import RandomForestClassifier
  6. from sklearn.model_selection import train_test_split
  7.  
  8.  
  9.  
  10.  
  11. def plot_decision_regions(X, y, classifier, test_idx=None, resolution=0.02):
  12. # setup markers generator and color map
  13. markers = ('s', 'x', 'o', '^', 'v')
  14. colors = ('red', 'blue', 'lightgreen', 'gray', 'cyan')
  15. cmap = ListedColormap(colors[:len(np.unique(y))])
  16.  
  17. # plot the decision surface
  18. x1_min, x1_max = X[:, 0].min() - 1, X[:, 0].max() + 1
  19. x2_min, x2_max = X[:, 1].min() - 1, X[:, 1].max() + 1
  20. xx1, xx2 = np.meshgrid(np.arange(x1_min, x1_max, resolution), np.arange(x2_min, x2_max, resolution))
  21.  
  22. z = classifier.predict(np.array([xx1.ravel(), xx2.ravel()]).T)
  23. z = z.reshape(xx1.shape)
  24. plt.contourf(xx1, xx2, z, alpha=0.4, cmap=cmap)
  25. plt.xlim(xx1.min(), xx1.max())
  26. plt.ylim(xx2.min(), xx2.max())
  27.  
  28. # plot all samples
  29. X_test, y_test = X[test_idx, :], y[test_idx]
  30. for idx, cl in enumerate(np.unique(y)):
  31. plt.scatter(x=X[y==cl, 0], y=X[y==cl, 1], alpha=0.8, c=cmap(idx), marker=markers[idx], label=cl)
  32.  
  33. # hightlight test samples
  34. if test_idx:
  35. X_test, y_test = X[test_idx, :], y[test_idx]
  36. plt.scatter(X_test[:, 0], X_test[:, 1], c='', alpha=1.0, linewidth=1, marker='o', s=55, label='test set')
  37.  
  38.  
  39. def main():
  40. iris = datasets.load_iris()
  41. x_train, x_test, y_train, y_test = train_test_split(iris.data[:, [2, 3]], iris.target, test_size=0.25, random_state=4)
  42. clf = RandomForestClassifier(n_estimators=20, max_depth=4)
  43. clf.fit(x_train, y_train)
  44. y_pred = clf.predict(x_test)
  45.  
  46. X_combined = np.vstack((x_train, x_test))
  47. y_combined = np.hstack((y_train, y_test))
  48.  
  49. plot_decision_regions(X_combined, y_combined, classifier=clf, test_idx=range(105, 150))
  50. plt.xlabel('petal length [cm]')
  51. plt.ylabel('petal width [cm]')
  52. plt.legend(loc='upper left')
  53. plt.show()
  54.  
  55.  
  56. if __name__ == '__main__':
  57. main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement