Skip to main content

A lightweight gradient boosting implementation in Rust.

Project description

PyPI Crates.io

Forust

A lightweight gradient boosting package

Forust, is a lightweight package for building gradient boosted decision tree ensembles. All of the algorithm code is written in Rust, with a python wrapper. The rust package can be used directly, however, most examples shown here will be for the python wrapper. For a self contained rust example, see here. It implements the same algorithm as the XGBoost package, and in many cases will give nearly identical results.

I developed this package for a few reasons, mainly to better understand the XGBoost algorithm, additionally to have a fun project to work on in rust, and because I wanted to be able to experiment with adding new features to the algorithm in a smaller simpler codebase.

All of the rust code for the package can be found in the src directory, while all of the python wrapper code is in the py-forust directory.

Installation

The package can be installed directly from pypi.

pip install forust

To use in a rust project add the following to your Cargo.toml file.

forust-ml = "0.2.5"

Usage

The GradientBooster class is currently the only public facing class in the package, and can be used to train gradient boosted decision tree ensembles with multiple objective functions.

It can be initialized with the following arguments.

  • objective_type (str, optional): The name of objective function used to optimize. Valid options include "LogLoss" to use logistic loss as the objective function (binary classification), or "SquaredLoss" to use Squared Error as the objective function (continuous regression). Defaults to "LogLoss".
  • iterations (int, optional): Total number of trees to train in the ensemble. Defaults to 100.
  • learning_rate (float, optional): Step size to use at each iteration. Each leaf weight is multiplied by this number. The smaller the value, the more conservative the weights will be. Defaults to 0.3.
  • max_depth (int, optional): Maximum depth of an individual tree. Valid values are 0 to infinity. Defaults to 5.
  • max_leaves (int, optional): Maximum number of leaves allowed on a tree. Valid values are 0 to infinity. This is the total number of final nodes. Defaults to sys.maxsize.
  • l2 (float, optional): L2 regularization term applied to the weights of the tree. Valid values are 0 to infinity. Defaults to 1.0.
  • gamma (float, optional): The minimum amount of loss required to further split a node. Valid values are 0 to infinity. Defaults to 0.0.
  • min_leaf_weight (float, optional): Minimum sum of the hessian values of the loss function required to be in a node. Defaults to 1.0.
  • base_score (float, optional): The initial prediction value of the model. Defaults to 0.5.
  • nbins (int, optional): Number of bins to calculate to partition the data. Setting this to a smaller number, will result in faster training time, while potentially sacrificing accuracy. If there are more bins, than unique values in a column, all unique values will be used. Defaults to 256.
  • parallel (bool, optional): Should multiple cores be used when training and predicting with this model? Defaults to True.
  • allow_missing_splits (bool, optional): Allow for splits to be made such that all missing values go down one branch, and all non-missing values go down the other, if this results in the greatest reduction of loss. If this is false, splits will only be made on non missing values. If create_missing_branch is set to True having this parameter be set to True will result in the missing branch further split, if this parameter is False then in that case the missing branch will always be a terminal node. Defaults to True.
  • monotone_constraints (dict[Any, int], optional): Constraints that are used to enforce a specific relationship between the training features and the target variable. A dictionary should be provided where the keys are the feature index value if the model will be fit on a numpy array, or a feature name if it will be fit on a pandas Dataframe. The values of the dictionary should be an integer value of -1, 1, or 0 to specify the relationship that should be estimated between the respective feature and the target variable. Use a value of -1 to enforce a negative relationship, 1 a positive relationship, and 0 will enforce no specific relationship at all. Features not included in the mapping will not have any constraint applied. If None is passed no constraints will be enforced on any variable. Defaults to None.
  • subsample (float, optional): Percent of records to randomly sample at each iteration when training a tree. Defaults to 1.0, meaning all data is used for training.
  • seed (integer, optional): Integer value used to seed any randomness used in the algorithm. Defaults to 0.
  • missing (float, optional): Value to consider missing, when training and predicting with the booster. Defaults to np.nan.
  • create_missing_branch (bool, optional): An experimental parameter, that if True, will create a separate branch for missing, creating a ternary tree, the missing node will be given the same weight value as the parent node. If this parameter is False, missing will be sent down either the left or right branch, creating a binary tree. Defaults to False.

Training and Predicting

Once, the booster has been initialized, it can be fit on a provided dataset, and performance field. After fitting, the model can be used to predict on a dataset. In the case of this example, the predictions are the log odds of a given record being 1.

# Small example dataset
from seaborn import load_dataset

df = load_dataset("titanic")
X = df.select_dtypes("number").drop(columns=["survived"])
y = df["survived"]

# Initialize a booster with defaults.
from forust import GradientBooster
model = GradientBooster(objective_type="LogLoss")
model.fit(X, y)

# Predict on data
model.predict(X.head())
# array([-1.94919663,  2.25863229,  0.32963671,  2.48732194, -3.00371813])

# predict contributions
model.predict_contributions(X.head())
# array([[-0.63014213,  0.33880048, -0.16520798, -0.07798772, -0.85083578,
#        -1.07720813],
#       [ 1.05406709,  0.08825999,  0.21662544, -0.12083538,  0.35209258,
#        -1.07720813],

The fit method accepts the following arguments.

  • X (FrameLike): Either a pandas DataFrame, or a 2 dimensional numpy array, with numeric data.
  • y (ArrayLike): Either a pandas Series, or a 1 dimensional numpy array. If "LogLoss" was the objective type specified, then this should only contain 1 or 0 values, where 1 is the positive class being predicted. If "SquaredLoss" is the objective type, then any continuous variable can be provided.
  • sample_weight (Optional[ArrayLike], optional): Instance weights to use when training the model. If None is passed, a weight of 1 will be used for every record. Defaults to None.

The predict method accepts the following arguments.

  • X (FrameLike): Either a pandas DataFrame, or a 2 dimensional numpy array, with numeric data.
  • parallel (Optional[bool], optional): Optionally specify if the predict function should run in parallel on multiple threads. If None is passed, the parallel attribute of the booster will be used. Defaults to None.

The predict_contributions method will predict with the fitted booster on new data, returning the feature contribution matrix. The last column is the bias term.

  • X (FrameLike): Either a pandas DataFrame, or a 2 dimensional numpy array, with numeric data.
  • method (str, optional): Method to calculate the contributions, if "average" is specified, the average internal node values are calculated, this is equivalent to the approx_contribs parameter in XGBoost. The other supported method is "weight", this will use the internal leaf weights, to calculate the contributions. This is the same as what is described by Saabas here.
  • parallel (Optional[bool], optional): Optionally specify if the predict function should run in parallel on multiple threads. If None is passed, the parallel attribute of the booster will be used. Defaults to None.

Inspecting the Model

Once the booster has been fit, each individual tree structure can be retrieved in text form, using the text_dump method. This method returns a list, the same length as the number of trees in the model.

model.text_dump()[0]
# 0:[0 < 3] yes=1,no=2,missing=2,gain=91.50833,cover=209.388307
#       1:[4 < 13.7917] yes=3,no=4,missing=4,gain=28.185467,cover=94.00148
#             3:[1 < 18] yes=7,no=8,missing=8,gain=1.4576768,cover=22.090348
#                   7:[1 < 17] yes=15,no=16,missing=16,gain=0.691266,cover=0.705011
#                         15:leaf=-0.15120,cover=0.23500
#                         16:leaf=0.154097,cover=0.470007

The json_dump method performs the same action, but returns the model as a json representation rather than a text string.

To see an estimate for how a given feature is used in the model, the partial_dependence method is provided. This method calculates the partial dependence values of a feature. For each unique value of the feature, this gives the estimate of the predicted value for that feature, with the effects of all features averaged out. This information gives an estimate of how a given feature impacts the model.

The partial_dependence method takes the following parameters...

  • X (FrameLike): Either a pandas DataFrame, or a 2 dimensional numpy array. This should be the same data passed into the models fit, or predict, with the columns in the same order.
  • feature (Union[str, int]): The feature for which to calculate the partial dependence values. This can be the name of a column, if the provided X is a pandas DataFrame, or the index of the feature.

This method returns a 2 dimensional numpy array, where the first column is the sorted unique values of the feature, and then the second column is the partial dependence values for each feature value.

This information can be plotted to visualize how a feature is used in the model, like so.

from seaborn import lineplot
import matplotlib.pyplot as plt

pd_values = model.partial_dependence(X=X, feature="age")

fig = lineplot(x=pd_values[:,0], y=pd_values[:,1],)
plt.title("Partial Dependence Plot")
plt.xlabel("Age")
plt.ylabel("Log Odds")

We can see how this is impacted if a model is created, where a specific constraint is applied to the feature using the monotone_constraint parameter.

model = GradientBooster(
    objective_type="LogLoss",
    monotone_constraints={"age": -1},
)
model.fit(X, y)

pd_values = model.partial_dependence(X=X, feature="age")
fig = lineplot(
    x=pd_values[:, 0],
    y=pd_values[:, 1],
)
plt.title("Partial Dependence Plot with Monotonicity")
plt.xlabel("Age")
plt.ylabel("Log Odds")

Saving the model

To save and subsequently load a trained booster, the save_booster and load_booster methods can be used. Each accepts a path, which is used to write the model to. The model is saved and loaded as a json object.

trained_model.save_booster("model_path.json")

# To load a model from a json path.
loaded_model = GradientBooster.load_model("model_path.json")

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

forust-0.2.5.tar.gz (2.0 MB view hashes)

Uploaded Source

Built Distributions

forust-0.2.5-cp311-none-win_amd64.whl (386.0 kB view hashes)

Uploaded CPython 3.11 Windows x86-64

forust-0.2.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (466.3 kB view hashes)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

forust-0.2.5-cp311-cp311-macosx_10_7_x86_64.whl (421.2 kB view hashes)

Uploaded CPython 3.11 macOS 10.7+ x86-64

forust-0.2.5-cp310-none-win_amd64.whl (386.0 kB view hashes)

Uploaded CPython 3.10 Windows x86-64

forust-0.2.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (466.3 kB view hashes)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

forust-0.2.5-cp310-cp310-macosx_10_7_x86_64.whl (421.2 kB view hashes)

Uploaded CPython 3.10 macOS 10.7+ x86-64

forust-0.2.5-cp39-none-win_amd64.whl (386.2 kB view hashes)

Uploaded CPython 3.9 Windows x86-64

forust-0.2.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (466.6 kB view hashes)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

forust-0.2.5-cp39-cp39-macosx_10_7_x86_64.whl (421.4 kB view hashes)

Uploaded CPython 3.9 macOS 10.7+ x86-64

forust-0.2.5-cp38-none-win_amd64.whl (386.1 kB view hashes)

Uploaded CPython 3.8 Windows x86-64

forust-0.2.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (467.4 kB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

forust-0.2.5-cp38-cp38-macosx_10_7_x86_64.whl (421.4 kB view hashes)

Uploaded CPython 3.8 macOS 10.7+ x86-64

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page