square-binaryCat Boost Model

predict(features, labels)

Predict

Parameters:

  • features (list float).

  • labels (list string).

Return:

Example Usage:

-- Example code showing how to use the function
local model = catboost.loadModel("model.cbm")
local predictions = model.predict({0, 1}, {"Apple", "Banana"})

Last updated