Skip to content

Instantly share code, notes, and snippets.

@bruce-willis
Last active April 15, 2019 19:22
Show Gist options
  • Save bruce-willis/629e50ef4e824e2b4b581f7fae9ca1b3 to your computer and use it in GitHub Desktop.
Save bruce-willis/629e50ef4e824e2b4b581f7fae9ca1b3 to your computer and use it in GitHub Desktop.
Some takeaways from CSCHW4 solution

link to slides

Результаты:

Feature engineering score (holdout)
no statistic 0.744318
basic statistic 0.764667
all statistic (basic + relative) 0.768469

Memory usage

  • good intro
  • smaller datatypes - some tips:
    • don't forget to bring nan back (or impute before)
    • change this: props.memory_usage().sum() / 1024**2 to this: props.memory_usage(deep=True).sum() / 1024**2
    • do something with object columns!

Feature importance

TL;DR use shap
why is it needed

Hyper parameter optimization

Rankinkg

kaggle

lightgbm

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment