SVC(Support Vector Classification) # 변수에 저장하여 사용 >>> classifier = SVC(kernel='linear') >>> classifier = SVC(kernel='rbf') # 'linear', 'poly', 'rbf', 'sigmoid', 'precomputed' 호출 가능 # default = 'rbf' from sklearn.svm import SVC >>> classifier = SVC() # 디폴트 값 'rbf' >>> classifier.fit(X_train, y_train) >>> y_pred = classifier.predict(X_test) >>> y_pred array([0, 0, 1, 1, 1, 0, 0, 1, 0, 1, 0, 0, 0, 1..