우노
[ML] Xgboost Error 해결 방법 본문
에러
WARNING: src/objective/regression_obj.cu:152: reg:linear is now deprecated in favor of reg:squarederror.
해결 방법
회귀 모델 매개 변수 objective = 'reg:lineaqr' 을 'reg:squarederror'로 변경
예
xg_reg = xgb.XGBRegressor(objective='reg:squarederror', colsample_bytree = 0.3, learning_rate = 0.1, max_depth = 5, alpha = 10, n_estimators = 10)
'AI > Machine Learning' 카테고리의 다른 글
[ML] Multi-Task Learning이란? (0) | 2021.01.27 |
---|---|
[ML] Sklearn cross_val_score Custom Scoring 사용하기 (0) | 2021.01.04 |
[ML] 주성분 분석(PCA, Principal Component Analysis)이란? (0) | 2020.11.16 |
[ML] sklearn LinearRegression 튜토리얼 (0) | 2020.11.11 |
[ML] K-평균(K-Means)이란? (0) | 2020.11.02 |
Comments