Skip to main content

A Python package for fitting Quinlan's Cubist regression model.

Project description

Cubist

A Python package for fitting Quinlan's Cubist v2.07 regression model. Inspired by and based on the R wrapper for Cubist. Designed after and inherits from the scikit-learn framework.

Installation

pip install cubist

or

pip install --upgrade cubist

Background

Cubist is a regression algorithm develped by John Ross Quinlan for generating rule-based predictive models. This has been available in the R world thanks to the work of Max Kuhn and his colleagues. With this package it is introduced to Python and made scikit-learn compatible for easy use with existing data and model pipelines. Additionally, cross-validation and control over whether Cubist creates a composite model is added here.

Advantages

Unlike other ensemble models such as RandomForest and XGBoost, Cubist generates a set of rules, making it easy to understand precisely how the model makes it's predictive decisions. Thus tools such as SHAP and LIME are unnecessary as Cubist doesn't exhibit black box behavior.

Like XGBoost, Cubist can perform boosting by the addition of more models (here called committees) that correct for the error of prior models (i.e. the second model created corrects for the prediction error of the first, the third for the error of the second, etc.).

In addition to boosting, the model can perform instance-based (nearest-neighbor) corrections to create composite models, thus combining the advantages of these two methods. Note that with instance-based correction, model accuracy may be improved at the expense of computing time (this extra step takes longer) and some interpretability as the linear regression rules are no longer completely followed. It should also be noted that a composite model might be quite large as the full training dataset must be stored in order to perform instance-based corrections for inferencing. A composite model will be used when composite=True or Cubist can be allowed to decide whether to take advantage of this feature with composite='auto'.

Use

from sklearn.datasets import fetch_california_housing
from cubist import Cubist
X, y = fetch_california_housing(return_X_y=True, as_frame=True)
model = Cubist() # <- model parameters here
model.fit(X, y)
model.predict(X)
model.score(X, y)

Sample Output

[Sample Cubist output for Iris dataset

The above image is a sample of the verbose output produced by Cubist. It first reports the total number of cases (rows) and attributes (columns) in the training dataset. Below that it summarizes the model by committee (if used but not in this sample) and rule where each rule is definined by an if..then statement along with metrics for this rule in the training data and the linear regression equation used for each rule. The 'if' section of each rule identifies the training input columns and feature value ranges for which this rule holds true. The 'then' statement shows the linear regressor for this rule. The model performance is then summarized by the average and relative absolute errors as well as with the Pearson correlation coefficient r. Finally, the output reports the usage of training features in the model and rules as well as the time taken to complete training.

Model Parameters

The following parameters can be passed as arguments to the Cubist() class instantiation:

  • n_rules (int, default=500): Limit of the number of rules Cubist will build. Recommended value is 500.
  • n_committees (int, default=0): Number of committees to construct. Each committee is a rule based model and beyond the first tries to correct the prediction errors of the prior constructed model. Recommended value is 5.
  • neighbors (int, default=None): Number between 1 and 9 for how many instances should be used to correct the rule-based prediction.
  • unbiased (bool, default=False): Should unbiased rules be used? Since Cubist minimizes the MAE of the predicted values, the rules may be biased and the mean predicted value may differ from the actual mean. This is recommended when there are frequent occurrences of the same value in a training dataset. Note that MAE may be slightly higher.
  • composite (True, False, or 'auto', default=False): A composite model is a combination of Cubist's rule-based model and instance-based or nearest-neighbor models to improve the predictive performance of the returned model. A value of True requires Cubist to include the nearest-neighbor model, False will ensure Cubist only generates a rule-based model, and 'auto' allows the algorithm to choose whether to use nearest-neighbor corrections.
  • extrapolation (float, default=0.05): Adjusts how much rule predictions are adjusted to be consistent with the training dataset. Recommended value is 5% as a decimal (0.05)
  • sample (float, default=None): Percentage of the data set to be randomly selected for model building (0.0 or greater but less than 1.0).
  • cv (int, default=None): Whether to carry out cross-validation (recommended value is 10)
  • random_state (int, default=randint(0, 4095)): An integer to set the random seed for the C Cubist code.
  • target_label (str, default="outcome"): A label for the outcome variable. This is only used for printing rules.
  • verbose (int, default=0) Should the Cubist output be printed? 1 if yes, 0 if no.

Considerations

  • For small datasets, using the sample parameter is probably inadvisable because Cubist won't have enough samples to produce a representative model.
  • If you are looking for fast inferencing and can spare accuracy, skip using a composite model with composite=False.

Model Attributes

The following attributes are exposed to understand the Cubist model results:

  • feature_importances_ (pd.DataFrame): Table of how training data variables are used in the Cubist model.
  • rules_ (pd.DataFrame): Table of the rules built by the Cubist model and the percentage of data for which each rule condition applies.
  • coeff_ (pd.DataFrame): Table of the regression coefficients found by the Cubist model.
  • variables_ (dict): Information about all the variables passed to the model and those that were actually used.

Benchmarks

There are many literature examples demonstrating the power of Cubist and comparing it to Random Forest as well as other bootstrapped/boosted models. Some of these are compiled here: https://www.rulequest.com/cubist-pubs.html. To demonstrate this, some benchmark scripts are provided in the respectively named folder.

Literature for Cubist

Publications Using Cubist

To Do

  • Add visualization utilities
  • Add benchmark scripts

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

cubist-0.0.16.tar.gz (153.2 kB view hashes)

Uploaded Source

Built Distributions

cubist-0.0.16-cp39-cp39-win_amd64.whl (273.2 kB view hashes)

Uploaded CPython 3.9 Windows x86-64

cubist-0.0.16-cp39-cp39-musllinux_1_1_x86_64.whl (487.1 kB view hashes)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

cubist-0.0.16-cp39-cp39-musllinux_1_1_i686.whl (464.1 kB view hashes)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

cubist-0.0.16-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (493.5 kB view hashes)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

cubist-0.0.16-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (475.6 kB view hashes)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

cubist-0.0.16-cp39-cp39-macosx_10_9_x86_64.whl (274.9 kB view hashes)

Uploaded CPython 3.9 macOS 10.9+ x86-64

cubist-0.0.16-cp38-cp38-win_amd64.whl (273.3 kB view hashes)

Uploaded CPython 3.8 Windows x86-64

cubist-0.0.16-cp38-cp38-musllinux_1_1_x86_64.whl (485.8 kB view hashes)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

cubist-0.0.16-cp38-cp38-musllinux_1_1_i686.whl (464.2 kB view hashes)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

cubist-0.0.16-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (492.6 kB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

cubist-0.0.16-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (475.5 kB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

cubist-0.0.16-cp38-cp38-macosx_10_9_x86_64.whl (275.0 kB view hashes)

Uploaded CPython 3.8 macOS 10.9+ x86-64

cubist-0.0.16-cp37-cp37m-win_amd64.whl (273.2 kB view hashes)

Uploaded CPython 3.7m Windows x86-64

cubist-0.0.16-cp37-cp37m-musllinux_1_1_x86_64.whl (482.8 kB view hashes)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

cubist-0.0.16-cp37-cp37m-musllinux_1_1_i686.whl (461.5 kB view hashes)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

cubist-0.0.16-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (489.2 kB view hashes)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64

cubist-0.0.16-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl (473.4 kB view hashes)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

cubist-0.0.16-cp37-cp37m-macosx_10_9_x86_64.whl (274.8 kB view hashes)

Uploaded CPython 3.7m macOS 10.9+ x86-64

cubist-0.0.16-cp36-cp36m-win_amd64.whl (285.3 kB view hashes)

Uploaded CPython 3.6m Windows x86-64

cubist-0.0.16-cp36-cp36m-musllinux_1_1_x86_64.whl (480.3 kB view hashes)

Uploaded CPython 3.6m musllinux: musl 1.1+ x86-64

cubist-0.0.16-cp36-cp36m-musllinux_1_1_i686.whl (459.2 kB view hashes)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

cubist-0.0.16-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (488.1 kB view hashes)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64

cubist-0.0.16-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl (469.1 kB view hashes)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

cubist-0.0.16-cp36-cp36m-macosx_10_9_x86_64.whl (273.4 kB view hashes)

Uploaded CPython 3.6m macOS 10.9+ 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