Wednesday 8 May 2024

How to Save Gradient Boosting Models with XGBoost in Python

 XGBoost can be used to create some of the most performant models for tabular data using the gradient boosting algorithm.

Once trained, it is often a good practice to save your model to file for later use in making predictions new test and validation datasets and entirely new data.

In this post you will discover how to save your XGBoost models to file using the standard Python pickle API.

After completing this tutorial, you will know:

  • How to save and later load your trained XGBoost model using pickle.
  • How to save and later load your trained XGBoost model using joblib.

    Serialize Your XGBoost Model with Pickle

    Pickle is the standard way of serializing objects in Python.

    You can use the Python pickle API to serialize your machine learning algorithms and save the serialized format to a file, for example:

    Later you can load this file to deserialize your model and use it to make new predictions, for example:

    The example below demonstrates how you can train a XGBoost model on the Pima Indians onset of diabetes dataset, save the model to file and later load it to make predictions.

    Download the dataset and save it to your current working directory.

    The full code listing is provided below for completeness.

    Running this example saves your trained XGBoost model to the pima.pickle.dat pickle file in the current working directory.

    Note: Your results may vary given the stochastic nature of the algorithm or evaluation procedure, or differences in numerical precision. Consider running the example a few times and compare the average outcome.

    After loading the model and making predictions on the training dataset, the accuracy of the model is printed.

    Serialize XGBoost Model with joblib

    Joblib is part of the SciPy ecosystem and provides utilities for pipelining Python jobs.

    The Joblib API provides utilities for saving and loading Python objects that make use of NumPy data structures, efficiently. It may be a faster approach for you to use with very large models.

    The API looks a lot like the pickle API, for example, you may save your trained model as follows:

    You can later load the model from file and use it to make predictions as follows:

    The example below demonstrates how you can train an XGBoost model for classification on the Pima Indians onset of diabetes dataset, save the model to file using Joblib and load it at a later time in order to make predictions.

    Running the example saves the model to file as pima.joblib.dat in the current working directory and also creates one file for each NumPy array within the model (in this case two additional files).

    Note: Your results may vary given the stochastic nature of the algorithm or evaluation procedure, or differences in numerical precision. Consider running the example a few times and compare the average outcome.

    After the model is loaded, it is evaluated on the training dataset and the accuracy of the predictions is printed.

    Summary

    In this post, you discovered how to serialize your trained XGBoost models and later load them in order to make predictions.

    Specifically, you learned:

    • How to serialize and later load your trained XGBoost model using the pickle API.
    • How to serialize and later load your trained XGBoost model using the joblib API.

    Do you have any questions about serializing your XGBoost models or about this post? Ask your questions in the comments and I will do my best to answer.

No comments:

Post a Comment

Connect broadband

How to Visualize Gradient Boosting Decision Trees With XGBoost in Python

 Plotting individual decision trees can provide insight into the gradient boosting process for a given dataset. In this tutorial you will ...