matplotlib 如何画出与平面轮廓判定边界相同的判定边界线?

8ljdwjyq  于 2023-11-22  发布在  其他
关注(0)|答案(1)|浏览(116)

this链接:


如函数plot_decision_regions所示,可以通过meshgrid进行密集采样来可视化决策区域。但是,如果网格分辨率不够(如下面人为设置的),则边界会出现不准确。
实现下面的函数plot_decision_boundary,以分析计算和绘制决策边界。
因此,我想问一下,如何改变plot_decision_boundary的功能,以显示与plt.contourf()的判定边界相同的线。(如绿色线)


from matplotlib.colors import ListedColormap

def plot_decision_regions(X, y, classifier, resolution=0.01):
    markers = ('s', 'x', 'o', '^', 'v')
    colors = ('red', 'blue', 'lightgreen', 'gray', 'cyan')
    cmap = ListedColormap(colors[:len(np.unique(y))])
    x1_min, x1_max = X[:, 0].min() - 1, X[:, 0].max() + 1
    x2_min, x2_max = X[:, 1].min() - 1, X[:, 1].max() + 1
    xx1, xx2 = np.meshgrid(np.arange(x1_min, x1_max, resolution),
                           np.arange(x2_min, x2_max, resolution))
    Z = classifier.predict(np.array([xx1.ravel(), xx2.ravel()]).T)
    Z = Z.reshape(xx1.shape)
    plt.contourf(xx1, xx2, Z, alpha=0.3, cmap=cmap)
    plt.xlim(xx1.min(), xx1.max())
    plt.ylim(xx2.min(), xx2.max())
    for idx, cl in enumerate(np.unique(y)):
        plt.scatter(x=X[y == cl, 0], 
                    y=X[y == cl, 1],
                    alpha=0.8, 
                    c=colors[idx],
                    marker=markers[idx], 
                    label=cl, 
                    edgecolor='black')

def plot_decision_boundary(X, y, classifier):       
    # replace the two lines below with your code
    x1_interval = [X[:, 0].min() - 1, X[:, 0].max() + 1]
    x2_interval = [X[:, 1].min() - 1, X[:, 1].max() + 1]

    plt.plot(x1_interval, x2_interval, color='green', linewidth=4, label='boundary')

low_res = 0.1 # intentional for this exercise
plot_decision_regions(X, y, classifier=ppn, resolution=low_res)
plot_decision_boundary(X, y, classifier=ppn)
plt.xlabel('sepal length [cm]')
plt.ylabel('petal length [cm]')
plt.legend(loc='upper left')
plt.tight_layout()
plt.show()

字符串

sqyvllje

sqyvllje1#

它必须是hku comp 7404 HW。你需要确定两个点(-b / w1,0)和(0,-b / w2)。

相关问题