Published May 11, 2020
| Version 0.2.0
Software
Open
XGBoost-FastForest
Description
Minimal library code to deploy XGBoost models in C++.
In science, it is very common to protoype algorithms with Python and then put them in production with fast C++ code. Transitioning models from Python to C++ should be as easy as possible to make sure new ideas can be tried out rapidly. The FastForest library helps you to get your xgboost model into a C++ production environment as quickly as possible.
The mission of this library is to be:
- Easy: deploying your xgboost model should be as painless as it can be
- Fast: thanks to efficient data structures for storing the trees, this library goes easy on your CPU and memory
- Safe: the FastForest objects are immutable, and therefore they are an excellent choice in multithreading environments
- Portable: FastForest has no dependency other than the C++ standard library
Files
XGBoost-FastForest-0.2.zip
Files
(158.2 kB)
Name | Size | Download all |
---|---|---|
md5:9946fd167ef6b092c83f36a3b3549ea2
|
158.2 kB | Preview Download |
Additional details
Related works
- Is supplement to
- Software: https://github.com/guitargeek/XGBoost-FastForest/tree/0.2 (URL)