├── .gitignore ├── LICENSE ├── README.org ├── src └── cpp │ ├── Makefile │ ├── auc.cpp │ ├── auc.hpp │ ├── cmd_option.hpp │ ├── config.cpp │ ├── config.hpp │ ├── custom_loss_example.cpp │ ├── custom_loss_example.hpp │ ├── data.cpp │ ├── data.hpp │ ├── data_unittest.cpp │ ├── gbdt.cpp │ ├── gbdt.hpp │ ├── gbdt_predict.cpp │ ├── gbdt_train.cpp │ ├── loss.cpp │ ├── loss.hpp │ ├── loss_unittest.cpp │ ├── math_util.cpp │ ├── math_util.hpp │ ├── metrics.cpp │ ├── metrics.hpp │ ├── time.cpp │ ├── time.hpp │ ├── tree.cpp │ ├── tree.hpp │ ├── tree_unittest.cpp │ ├── util.cpp │ └── util.hpp └── test ├── build_data.py └── demo.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiyiping/gbdt/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiyiping/gbdt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiyiping/gbdt/HEAD/README.org -------------------------------------------------------------------------------- /src/cpp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiyiping/gbdt/HEAD/src/cpp/Makefile -------------------------------------------------------------------------------- /src/cpp/auc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiyiping/gbdt/HEAD/src/cpp/auc.cpp -------------------------------------------------------------------------------- /src/cpp/auc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiyiping/gbdt/HEAD/src/cpp/auc.hpp -------------------------------------------------------------------------------- /src/cpp/cmd_option.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiyiping/gbdt/HEAD/src/cpp/cmd_option.hpp -------------------------------------------------------------------------------- /src/cpp/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiyiping/gbdt/HEAD/src/cpp/config.cpp -------------------------------------------------------------------------------- /src/cpp/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiyiping/gbdt/HEAD/src/cpp/config.hpp -------------------------------------------------------------------------------- /src/cpp/custom_loss_example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiyiping/gbdt/HEAD/src/cpp/custom_loss_example.cpp -------------------------------------------------------------------------------- /src/cpp/custom_loss_example.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiyiping/gbdt/HEAD/src/cpp/custom_loss_example.hpp -------------------------------------------------------------------------------- /src/cpp/data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiyiping/gbdt/HEAD/src/cpp/data.cpp -------------------------------------------------------------------------------- /src/cpp/data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiyiping/gbdt/HEAD/src/cpp/data.hpp -------------------------------------------------------------------------------- /src/cpp/data_unittest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiyiping/gbdt/HEAD/src/cpp/data_unittest.cpp -------------------------------------------------------------------------------- /src/cpp/gbdt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiyiping/gbdt/HEAD/src/cpp/gbdt.cpp -------------------------------------------------------------------------------- /src/cpp/gbdt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiyiping/gbdt/HEAD/src/cpp/gbdt.hpp -------------------------------------------------------------------------------- /src/cpp/gbdt_predict.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiyiping/gbdt/HEAD/src/cpp/gbdt_predict.cpp -------------------------------------------------------------------------------- /src/cpp/gbdt_train.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiyiping/gbdt/HEAD/src/cpp/gbdt_train.cpp -------------------------------------------------------------------------------- /src/cpp/loss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiyiping/gbdt/HEAD/src/cpp/loss.cpp -------------------------------------------------------------------------------- /src/cpp/loss.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiyiping/gbdt/HEAD/src/cpp/loss.hpp -------------------------------------------------------------------------------- /src/cpp/loss_unittest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiyiping/gbdt/HEAD/src/cpp/loss_unittest.cpp -------------------------------------------------------------------------------- /src/cpp/math_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiyiping/gbdt/HEAD/src/cpp/math_util.cpp -------------------------------------------------------------------------------- /src/cpp/math_util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiyiping/gbdt/HEAD/src/cpp/math_util.hpp -------------------------------------------------------------------------------- /src/cpp/metrics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiyiping/gbdt/HEAD/src/cpp/metrics.cpp -------------------------------------------------------------------------------- /src/cpp/metrics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiyiping/gbdt/HEAD/src/cpp/metrics.hpp -------------------------------------------------------------------------------- /src/cpp/time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiyiping/gbdt/HEAD/src/cpp/time.cpp -------------------------------------------------------------------------------- /src/cpp/time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiyiping/gbdt/HEAD/src/cpp/time.hpp -------------------------------------------------------------------------------- /src/cpp/tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiyiping/gbdt/HEAD/src/cpp/tree.cpp -------------------------------------------------------------------------------- /src/cpp/tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiyiping/gbdt/HEAD/src/cpp/tree.hpp -------------------------------------------------------------------------------- /src/cpp/tree_unittest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiyiping/gbdt/HEAD/src/cpp/tree_unittest.cpp -------------------------------------------------------------------------------- /src/cpp/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiyiping/gbdt/HEAD/src/cpp/util.cpp -------------------------------------------------------------------------------- /src/cpp/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiyiping/gbdt/HEAD/src/cpp/util.hpp -------------------------------------------------------------------------------- /test/build_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiyiping/gbdt/HEAD/test/build_data.py -------------------------------------------------------------------------------- /test/demo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiyiping/gbdt/HEAD/test/demo.sh --------------------------------------------------------------------------------