File uploads: We have fixed an issue which caused file uploads to fail. We apologise for the inconvenience it may have caused.

Published October 2, 2023 | Version 0.4.0
Software Open

XGBoost-FastForest

  • 1. CERN

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-4-0.zip

Files (170.0 kB)

Name Size Download all
md5:d71c17b2c9c9d16b48516f15008001c0
170.0 kB Preview Download

Additional details

Related works