Expand description
§CatBoost Inference
This library allows you to load and perform inference with CatBoost models.
To use this library, you need to have a CatBoost model saved in JSON format. If using the python catboost library, you can save the model to JSON like this:
classifier.save_model(
model_filename,
format="json",
)
Then use the CatBoost
struct to load the model and perform inference.
Note that categorical features are not supported at this time. (Only float features are supported.)
Structs§
- CatBoost
- The main struct for the CatBoost model. This struct contains the model parameters and methods for loading and performing inference.