The Wayback Machine - https://web.archive.org/web/20200618155241/https://github.com/topics/interpretable-machine-learning
Skip to content
#

interpretable-machine-learning

Here are 79 public repositories matching this topic...

matheus-asilva
matheus-asilva commented Nov 27, 2019

When running
from interpret import show
from interpret.perf import ROC
blackbox_perf = ROC(blackbox_model.predict_proba).explain_perf(X_test, y_test, name='Blackbox')
show(blackbox_perf)

I have the following error

RuntimeError: Could not find open port.
Consider calling interpret.set_show_addr(("127.0.0.1", 7001)) first..

Even calling the set_show_addr, I

DALEX
pbiecek
pbiecek commented Mar 14, 2020

General:

  • remove outdated examples from DALEX_docs
  • prepare skeleton for R/Python docs

R specific:

  • prepare Introductory materials to predictive models for titanic and apartments
  • prepare Introductory materials to explain()
  • prepare Introductory materials to predict_parts()
  • prepare Introductory materials to predict_profile()
  • prepar
pyGAM
pjk645
pjk645 commented Mar 8, 2020

There are several instances where the functional form is shown as
$$\beta_0 + f_1(X_1) + f_2(X_2, X3) + \ldots + f_M(X_N),$$
and I believe it should be
$$\beta_0 + f_1(X_1) + f_2(X_2) + f_3( X_3) + \ldots + f_M(X_M),$$
or even this
$$\beta_0 + f_1(X_1) +\ldots + f_M(X_M)$$
is probably sufficient.

dvorka
dvorka commented Sep 21, 2018

In order to successfully install examples using Docker I did the following changes:

  • There seems to be missing step which clones mli-resources GitHub repository. Perhaps RUN git clone https://github.com/h2oai/mli-resources.git should be added to Dockerfile (I cloned repo manually).
  • Jupyter refuses to start under root - consider adding --allow-root parameter: `docker run -i -t -p 888
pyss3

Improve this page

Add a description, image, and links to the interpretable-machine-learning topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the interpretable-machine-learning topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.