[회귀] 데이콘 Basic 풍속 예측 AI 경진대회 (2) - 모델링 1~4(회귀 트리, 선형 회귀, AutoGluon)
모델링 1 회귀 트리, XGBRegressor와 LGBMRegressor를 혼합한 모델 두 트리의 최적 하이퍼 파라미터 튜닝 In [ ]: X_train_1 = X_train.copy() y_train_1 = y_train.copy() In [ ]: xgb_reg = XGBRegressor(n_estimators=1000, learning_rate=0.05, colsample_bytree=0.5, subsample=0.8) lgbm_reg = LGBMRegressor(n_estimators=1000, learning_rate=0.05, num_leaves=4, subsample=0.6, colsample_bytree=0.4, reg_lambda=10, n_jobs=-1) xgb_reg.fit(X_trai..