본문 바로가기

Machine Learning/회귀(Regression)

Regression - SVR

반응형

https://steadiness-193.tistory.com/259

 

Classification - SVM 서포트 벡터 머신

https://steadiness-193.tistory.com/257 Machine Learning - valid와 test를 train으로 전처리 https://steadiness-193.tistory.com/256 Machine Learning - train_test_split https://steadiness-193.tistory.co..

steadiness-193.tistory.com

 

서포트 벡터 머신에 대한 내용은 위 포스팅에 있다.

 

SVC와 같이 마진을 최대화할 수 있는 결정경계를 그려나가는 것이 바로 SVR이다.

 

 

 

데이터 불러오기

 

https://steadiness-193.tistory.com/269

 

Regression - FIFA 이적료 예측 : 전처리

dacon.io/competitions/open/235538/data/ [스포츠] 해외 축구 선수 이적료 예측 미션 출처 : DACON - Data Science Competition dacon.io 각 컬럼의 정보 id 선수 고유의 아이디 name 이름 age 나이 continent 선..

steadiness-193.tistory.com

 

위 포스팅에서 전처리 완료한 데이터를 이용한다.

 

 

 

 

 

파라미터 조정

 

 

C값을 10으로 잡아 기본값인 1보다는 Hard Margin을 잡을 수 있게 바꾸고

 

rbf 커널이 생성하는 경계의 복잡도를 0.08로 지정했다.

 

 

 

 

전체적인 평가 지표가 조금씩 좋아진 것을 볼 수 있다.

(일반화 성능이 조금 좋아짐)

 

 

반응형