Skip to content

Instantly share code, notes, and snippets.

@bsitruk
Last active August 20, 2019 13:55
Show Gist options
  • Save bsitruk/c3f3fa8b0c5eb3d04b57cfea0e4a22b2 to your computer and use it in GitHub Desktop.
Save bsitruk/c3f3fa8b0c5eb3d04b57cfea0e4a22b2 to your computer and use it in GitHub Desktop.
LightGBM Optimized Parameters
# configuration params are copied from @artgor kernel:
# https://www.kaggle.com/artgor/brute-force-feature-engineering
LGB_PARAMS = {
'objective': 'regression',
'metric': 'mae',
'verbosity': -1,
'boosting_type': 'gbdt',
'learning_rate': 0.2,
'num_leaves': 128,
'min_child_samples': 79,
'max_depth': 9,
'subsample_freq': 1,
'subsample': 0.9,
'bagging_seed': 11,
'reg_alpha': 0.1,
'reg_lambda': 0.3,
'colsample_bytree': 1.0
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment