xgboost/README.md
tqchen@graphlab.com 04e04ec5a0 chg readme
2014-08-18 10:19:47 -07:00

1.1 KiB

xgboost: eXtreme Gradient Boosting

An optimized general purpose gradient boosting (tree) library.

Contributors: https://github.com/tqchen/xgboost/graphs/contributors

Turorial and Documentation: https://github.com/tqchen/xgboost/wiki

Questions and Issues: https://github.com/tqchen/xgboost/issues

xgboost-unity

experimental branch(not usable yet): refactor xgboost, cleaner code, more flexibility

Build

  • Simply type make
  • If your compiler does not come with OpenMP support, it will fire an warning telling you that the code will compile into single thread mode, and you will get single thread xgboost
  • You may get a error: -lgomp is not found
    • You can type make no_omp=1, this will get you single thread xgboost
    • Alternatively, you can upgrade your compiler to compile multi-thread version
  • Possible way to build using Visual Studio (not tested):
    • In principle, you can put src/xgboost.cpp and src/io/io.cpp into the project, and build xgboost.
    • For python module, you need python/xgboost_wrapper.cpp and src/io/io.cpp to build a dll.