본문 바로가기
AI/분류

[분류 - 6] SVM 실습

by Nhahan 2022. 4. 30.

계속 써왔던 나이와 급여에 따른 SUV 구매 여부 데이터 세트

 

앞의 진행과 비슷하기 때문에 코드는 더접기에 붙여넣고 생략.

더보기
# Importing the dataset
dataset = read.csv('Social_Network_Ads.csv')
dataset = dataset[3:5]

# Encoding the target feature as factor
dataset$Purchased = factor(dataset$Purchased, levels = c(0, 1))

# Splitting the dataset into the Training set and Test set
# install.packages('caTools')
library(caTools)
set.seed(123)
split = sample.split(dataset$Purchased, SplitRatio = 0.75)
training_set = subset(dataset, split == TRUE)
test_set = subset(dataset, split == FALSE)

# Feature Scaling
training_set[-3] = scale(training_set[-3])
test_set[-3] = scale(test_set[-3])

# Predicting the Test set results
y_pred = predict(classifier, newdata = test_set[-3])

# Making the Confusion Matrix
cm = table(test_set[, 3], y_pred)

# Visualising the Training set results
library(ElemStatLearn)
set = training_set
X1 = seq(min(set[, 1]) - 1, max(set[, 1]) + 1, by = 0.01)
X2 = seq(min(set[, 2]) - 1, max(set[, 2]) + 1, by = 0.01)
grid_set = expand.grid(X1, X2)
colnames(grid_set) = c('Age', 'EstimatedSalary')
y_grid = predict(classifier, newdata = grid_set)
plot(set[, -3],
     main = 'Classifier (Training set)',
     xlab = 'Age', ylab = 'Estimated Salary',
     xlim = range(X1), ylim = range(X2))
contour(X1, X2, matrix(as.numeric(y_grid), length(X1), length(X2)), add = TRUE)
points(grid_set, pch = '.', col = ifelse(y_grid == 1, 'springgreen3', 'tomato'))
points(set, pch = 21, bg = ifelse(set[, 3] == 1, 'green4', 'red3'))

# Visualising the Test set results
library(ElemStatLearn)
set = test_set
X1 = seq(min(set[, 1]) - 1, max(set[, 1]) + 1, by = 0.01)
X2 = seq(min(set[, 2]) - 1, max(set[, 2]) + 1, by = 0.01)
grid_set = expand.grid(X1, X2)
colnames(grid_set) = c('Age', 'EstimatedSalary')
y_grid = predict(classifier, newdata = grid_set)
plot(set[, -3], main = 'Classifier (Test set)',
     xlab = 'Age', ylab = 'Estimated Salary',
     xlim = range(X1), ylim = range(X2))
contour(X1, X2, matrix(as.numeric(y_grid), length(X1), length(X2)), add = TRUE)
points(grid_set, pch = '.', col = ifelse(y_grid == 1, 'springgreen3', 'tomato'))
points(set, pch = 21, bg = ifelse(set[, 3] == 1, 'green4', 'red3'))

 

그래프를 보면,

훈련 세트로 만든 SVM classifier가 테스트 세트에서도 잘 되었다는 걸 알 수 있고,

SVM이 선형 classifier인 것도 알 수 있다.

 

근데 SVM이 성능이 좋다면서 왜 로지스틱 회귀와 동일한 결과가 나왔을까?

그건 이제 다음 Kernel SVM에서 알아보자.

'AI > 분류' 카테고리의 다른 글

[분류 - 8 ] 비선형 커널 SVR  (0) 2022.04.30
[분류 - 7] Kernel SVM이란?  (0) 2022.04.30
[분류 - 5] 서포트 벡터 머신(SVM)이란?  (0) 2022.04.30
[분류 - 4] K-NN 분류 실습  (0) 2022.04.29
[분류 - 3] K-Nearest Neighbors  (0) 2022.04.29

댓글