6차 모델 테스트
사용된 모델 및 데이터 셋
6차 전처리 과정LightGBM Model
lgb_params = {
'objective':'binary',
'boosting_type':'gbdt',
'metric':['auc','rmse'],
'n_jobs':-1,
'learning_rate':0.01,
'num_leaves': 2**7,
'max_depth':-1,
'tree_learner':'serial',
'colsample_bytree': 0.95,
'subsample_freq':1,
'subsample':0.9,
'n_estimators':62_000,
'max_bin':4092,
'verbose':-1,
'seed': SEED,
}실행 결과
Last updated
Was this helpful?