일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 선형회귀
- LeastSquare
- 최소제곱법
- 의사결정나무
- 중선형회귀
- 부스팅기법
- KNearestNeighbors
- C4.5
- LinearRegression
- 실제데이터활용
- 부스팅
- 경사하강법
- AdaBoostRegressor
- 캘리포니아주택가격예측
- 사전 가지치기
- pre pruning
- 체인지업후기
- 아다부스트
- 군집화기법
- 정보이득
- 사후 가지치기
- AdaBoostClassifier
- boosting
- 회귀분석
- MultipleLinearRegression
- cost complexity pruning
- 선형모형
- gradientdescent
- post pruning
- Adaboost
- Today
- Total
목록아다부스트 (2)
데이터 분석을 향한 발자취 남기기

지난번 AdaBoost 알고리즘을 분류에 대해서 공부해보았다. 이번 장에서는 AdaBoost를 회귀에 적용하는 알고리즘에 대해서 알아보고자 한다. AdaBoost Classifier 관련 정리 ↓https://footprints-toward-data-analysis.tistory.com/11 [Boosting] AdaBoost ClassifierBoosting의 대표적인 알고리즘인 AdaBoost 알고리즘에 대해서 알아보고자 한다. AdaBoost는 분류와 회귀 문제에 모두 사용할 수 있는 앙상블 모델로 오늘은 분류 문제를 다뤄보고자 한다. 1. AdaBoost Classifootprints-toward-data-analysis.tistory.com 1. AdaBoost Regressor Algorith..

Boosting의 대표적인 알고리즘인 AdaBoost 알고리즘에 대해서 알아보고자 한다. AdaBoost는 분류와 회귀 문제에 모두 사용할 수 있는 앙상블 모델로 오늘은 분류 문제를 다뤄보고자 한다. 1. AdaBoost Classifier Algorithm2. Simple example 1. AdaBoost Classifier AlgorithmAdaBoost는 Boosting 알고리즘이므로 오분류된 샘플들을 찾아 다음 분류기가 이를 집중적으로 학습할 수 있도록 하는 것이다. 약한 학습기 (weak learner)들을 적절하게 결합하여 강한 학습기 (strong learner)를 구성하며, 훈련 오류율(error rate)를 이용해 샘플의 가중치를 설정한다. - AdaBoost Classifier Alg..