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.