Git Product home page Git Product logo

imodels's Introduction

Interpretable machine-learning models (imodels) ๐Ÿ”

Python package for concise, transparent, and accurate predictive modeling. All sklearn-compatible and easily customizable.

docs โ€ข imodels overview โ€ข demo notebooks

imodels overview

Implementations of different popular interpretable models can be easily used and installed:

from imodels import BayesianRuleListClassifier, GreedyRuleListClassifier, SkopeRulesClassifier
from imodels import SLIMRegressor, RuleFitRegressor

model = BayesianRuleListClassifier()  # initialize a model
model.fit(X_train, y_train)   # fit model
preds = model.predict(X_test) # discrete predictions: shape is (n_test, 1)
preds_proba = model.predict_proba(X_test) # predicted probabilities: shape is (n_test, n_classes)
print(model) # print the rule-based model

-----------------------------
# if X1 > 5: then 80.5% risk
# else if X2 > 5: then 40% risk
# else: 10% risk

Install with pip install imodels (see here for help). Contains the following models:

Model Reference Description
Rulefit rule set ๐Ÿ—‚๏ธ, ๐Ÿ”—, ๐Ÿ“„ Extracts rules from a decision tree then builds a sparse linear model with them
Skope rule set ๐Ÿ—‚๏ธ, ๐Ÿ”— Extracts rules from gradient-boosted trees, deduplicates them, then forms a linear combination of them based on their OOB precision
Boosted rule set ๐Ÿ—‚๏ธ, ๐Ÿ”—, ๐Ÿ“„ Uses Adaboost to sequentially learn a set of rules
Bayesian rule list ๐Ÿ—‚๏ธ, ๐Ÿ”—, ๐Ÿ“„ Learns a compact rule list by sampling rule lists (rather than using a greedy heuristic)
Greedy rule list ๐Ÿ—‚๏ธ, ๐Ÿ”— Uses CART to learn a list (only a single path), rather than a decision tree
OneR rule list ๐Ÿ—‚๏ธ, ๐Ÿ“„ Learns rule list restricted to only one feature
Optimal rule tree ๐Ÿ—‚๏ธ, ๐Ÿ”—, ๐Ÿ“„ (In progress) Learns succinct trees using global optimization rather than greedy heuristics
Iterative random forest ๐Ÿ—‚๏ธ, ๐Ÿ”—, ๐Ÿ“„ (In progress) Repeatedly fit random forest, giving features with high importance a higher chance of being selected.
Sparse integer linear model ๐Ÿ—‚๏ธ, ๐Ÿ“„ Forces coefficients to be integers
Rule sets โŒ› (Coming soon) Many popular rule sets including SLIPPER, Lightweight Rule Induction, MLRules

Docs ๐Ÿ—‚๏ธ, Reference code implementation ๐Ÿ”—, Research paper ๐Ÿ“„
More models coming soon!

The final form of the above models takes one of the following forms, which aim to be simultaneously simple to understand and highly predictive:

Rule set Rule list Rule tree Algebraic models

Different models and algorithms vary not only in their final form but also in different choices made during modeling. In particular, many models differ in the 3 steps given by the table below.

ex. RuleFit and SkopeRules RuleFit and SkopeRules differ only in the way they prune rules: RuleFit uses a linear model whereas SkopeRules heuristically deduplicates rules sharing overlap.
ex. Bayesian rule lists and greedy rule lists Bayesian rule lists and greedy rule lists differ in how they select rules; bayesian rule lists perform a global optimization over possible rule lists while Greedy rule lists pick splits sequentially to maximize a given criterion.
ex. FPSkope and SkopeRules FPSkope and SkopeRules differ only in the way they generate candidate rules: FPSkope uses FPgrowth whereas SkopeRules extracts rules from decision trees.

See the docs for individual models for futher descriptions.

Rule candidate generation Rule selection Rule pruning / combination

The code here contains many useful and customizable functions for rule-based learning in the util folder. This includes functions / classes for rule deduplication, rule screening, and converting between trees, rulesets, and neural networks.

Demo notebooks

Demos are contained in the notebooks folder.

  • imodels_demo.ipynb, demos the imodels package. It shows how to fit, predict, and visualize with different interpretable models
  • this notebook shows an example of using imodels for deriving a clinical decision rule
  • we also include some demos of posthoc analysis, which occurs after fitting models
    • posthoc.ipynb - shows different simple analyses to interpret a trained model
    • uncertainty.ipynb - basic code to get uncertainty estimates for a model

Support for different tasks

Different models support different machine-learning tasks. Current support for different models is given below:

Model Binary classification Regression
Rulefit rule set โœ”๏ธ โœ”๏ธ
Skope rule set โœ”๏ธ
Boosted rule set โœ”๏ธ
Bayesian rule list โœ”๏ธ
Greedy rule list โœ”๏ธ
OneR rule list โœ”๏ธ
Optimal rule tree
Iterative random forest
Sparse integer linear model โœ”๏ธ

References

imodels's People

Contributors

bachsh avatar csinva avatar keyan3 avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.