728x90
=> Random Forest의 주요 단점 중 하나가: 속도가 느리며 메모리를 많이 잡아먹는다는 점
=> XGBoost vs LGBM
https://neptune.ai/blog/xgboost-vs-lightgbm
https://machinelearningmastery.com/xgboost-for-regression/
https://lsjsj92.tistory.com/547
!pip install xgboost
from xgboost import XGBRegressor
model = XGBRegressor()
XGBoost에서 더 세밀한 configuration에 대한 공부가 필요하다!
(코드비교) https://dacon.io/competitions/official/235985/codeshare/7065?page=1&dtype=recent
https://melonicedlatte.com/2021/03/14/181700.html
728x90
'AI > Data Science' 카테고리의 다른 글
SVM (0) | 2023.05.16 |
---|---|
[용어] Policy Rule, Policy Parameters (0) | 2022.12.11 |
[이론] The Kalman filter, 칼만 필터 (1) | 2022.10.26 |
[pandas, python] 시계열/날짜 데이터 전처리 (0) | 2022.10.14 |
Validation 데이터 분할, K-fold 교차검증 (0) | 2022.10.07 |