>>> X_combined_std = np.vstack((X_train_std, X_test_std))
    >>> y_combined = np.hstack((y_train, y_test))
    >>> plot_decision_regions(X=X_combined_std,
    ...                       y=y_combined,
    ...                       classifier=ppn, 
    ...                       test_idx=range(105, 150))
    >>> plt.xlabel('Petal length [standardized]')
    >>> plt.ylabel('Petal width [standardized]')
    >>> plt.legend(loc='upper left')
    >>> plt.tight_layout()
    >>> plt.show()

    결과 그래프에서 볼 수 있듯이 세 개의 붓꽃 클래스는 선형 결정 경계로 완벽하게 분류되지 못합니다.

    ▲ 그림 3-1 붓꽃 데이터셋에서 훈련한 다중 분류 퍼셉트론의 결정 경계

    신간 소식 구독하기
    뉴스레터에 가입하시고 이메일로 신간 소식을 받아 보세요.