From a68e2e52381261f122349a4084638ff49915fb28 Mon Sep 17 00:00:00 2001 From: Chandan Singh Date: Sat, 14 Nov 2020 16:01:42 -0800 Subject: [PATCH] bump version --- docs/index.html | 4 +- .../bayesian_rule_list.html | 116 ++++++++++-------- notebooks/1_model_based.ipynb | 34 ++--- readme.md | 4 +- setup.py | 2 +- 5 files changed, 90 insertions(+), 70 deletions(-) diff --git a/docs/index.html b/docs/index.html index e85db7dd..10b00db7 100644 --- a/docs/index.html +++ b/docs/index.html @@ -46,7 +46,7 @@ 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) -

Install with pip install git+https://github.com/csinva/imodels (see here for help). Contains the following models:

+

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

@@ -139,7 +139,7 @@

References

  • Review on evaluating interpretability: doshi-velez & kim 2017, pdf
  • -
  • Reference implementations (also linked above): the code here heavily derives from (and in some case is just a wrapper for) the wonderful work of previous projects. We seek to to extract out, combine, and maintain select relevant parts of these projects.