├── .gitignore ├── GBDT ├── decision_tree.py ├── gbdt.py ├── loss_function.py └── tree_plot.py ├── LICENSE ├── README.md ├── example.py └── 展示图片 └── all_trees.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/GBDT_Simple_Tutorial/HEAD/.gitignore -------------------------------------------------------------------------------- /GBDT/decision_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/GBDT_Simple_Tutorial/HEAD/GBDT/decision_tree.py -------------------------------------------------------------------------------- /GBDT/gbdt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/GBDT_Simple_Tutorial/HEAD/GBDT/gbdt.py -------------------------------------------------------------------------------- /GBDT/loss_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/GBDT_Simple_Tutorial/HEAD/GBDT/loss_function.py -------------------------------------------------------------------------------- /GBDT/tree_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/GBDT_Simple_Tutorial/HEAD/GBDT/tree_plot.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/GBDT_Simple_Tutorial/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/GBDT_Simple_Tutorial/HEAD/README.md -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/GBDT_Simple_Tutorial/HEAD/example.py -------------------------------------------------------------------------------- /展示图片/all_trees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freemanzxp/GBDT_Simple_Tutorial/HEAD/展示图片/all_trees.png --------------------------------------------------------------------------------