▶ 붓꽃 분류 - 텍스트 데이터처럼 희소한 고차원인 경우 높은 정확도와 속도를 제공 - 적용 분야 : 스펨 메일 분류, 문서 주제 분류, 컴퓨터 네트워크 침입자 분류 from sklearn.datasets import load_iris from sklearn.naive_bayes import GaussianNB from sklearn.model_selection import train_test_split from sklearn.metrics import accuracy_score, confusion_matrix # 데이터 로드 및 분할 x, y = load_iris(return_X_y=True) x_train, x_test, y_train, y_test = train_test_split(x, y, tes..