“xgbboostclassifier Model” Ответ

xgbboostclassifier Model

data_dmatrix = xgb.DMatrix(data=X,label=y)
Crazy Cottonmouth

xgbboostclassifier Model

params = {"objective":"reg:linear",'colsample_bytree': 0.3,'learning_rate': 0.1,
                'max_depth': 5, 'alpha': 10}

cv_results = xgb.cv(dtrain=data_dmatrix, params=params, nfold=3,
                    num_boost_round=50,early_stopping_rounds=10,metrics="rmse", as_pandas=True, seed=123)
Wide-eyed Whale

Ответы похожие на “xgbboostclassifier Model”

Вопросы похожие на “xgbboostclassifier Model”

Больше похожих ответов на “xgbboostclassifier Model” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования