Xgboost Error
·
Data Science
WARNING: /workspace/src/objective/regression_obj.cu:152: reg:linear is now deprecated in favor of reg:squarederror. Xgboost의 사이킷런 호환 Regressor인 XGBRegrssor의 Default 생성자로 reg:linear 가 입력됨 Xgboost 0.9 버전부터 reg:linear가 Deprecated 되고 reg:squarederror로 변경된다는 warning 메시지 Xgboost 정상 동작에는 문제가 없음 from xgboost import XGBRegressor xgb_reg = XGBRegressor(objective='reg:squarederror') [출처] 회귀 트리 관련 코드 warnin..