반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- tensorflow
- paragraph
- classification
- 재귀함수
- bccard
- vscode
- discrete_scatter
- CES 2O21 참가
- web
- mglearn
- CES 2O21 참여
- C언어
- web 사진
- broscoding
- 데이터전문기관
- pycharm
- postorder
- web 개발
- inorder
- web 용어
- 웹 용어
- cudnn
- 대이터
- html
- KNeighborsClassifier
- java역사
- 자료구조
- 머신러닝
- Keras
- 결합전문기관
Archives
- Today
- Total
bro's coding
머신러닝.Linear SVM(선형 서포트벡터머신) 기초 본문
반응형
구분선을 긋고 선과 가장 가까운 점들을 찾는다.
그 점을 support vector 라고 한다.
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
# data 준비
from sklearn.datasets import load_iris
iris=load_iris()
from sklearn.model_selection import train_test_split
col1=0
col2=1
X=iris.data[:,[col1,col2]]
y=iris.target
y[y==2]=1
from sklearn.model_selection import train_test_split
X_train,X_test,y_train,y_test=train_test_split(X,y)
# SVC 적용
from sklearn.svm import LinearSVC
model=LinearSVC(C=10000000)
model.fit(X_train,y_train)
# 시각화(train)
import mglearn
plt.figure(figsize=[10,10])
mglearn.plots.plot_2d_classification(model,X,cm='Reds',alpha=0.3)
mglearn.discrete_scatter(X_train[:,col1],X_train[:,col2],y_train,alpha=0.8)
# 시각화(train)
import mglearn
plt.figure(figsize=[10,10])
mglearn.plots.plot_2d_classification(model,X,cm='Reds',alpha=0.3)
mglearn.discrete_scatter(X_test[:,col1],X_test[:,col2],y_test,alpha=0.8)
반응형
'[AI] > python.sklearn' 카테고리의 다른 글
머신러닝.상관계수 구하기 (0) | 2020.04.16 |
---|---|
머신러닝.Pearson correlation coefficient(피어슨 상관 계수) (0) | 2020.04.14 |
머신러닝.linearSVM(class:3) (0) | 2020.04.14 |
머신러닝.model 정리 (0) | 2020.04.14 |
머신러닝.크로스 엔트로피 (0) | 2020.04.13 |
머신러닝.soft max (0) | 2020.04.13 |
머신러닝.sigmoid function(3D) (0) | 2020.04.13 |
머신러닝.sigmoid function 적용 (0) | 2020.04.13 |
Comments