explainability
Here are 44 public repositories matching this topic...
-
Updated
Jul 6, 2020
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
-
Updated
May 29, 2020 - Python
-
Updated
Oct 5, 2019 - Python
-
Updated
Jun 17, 2020 - Python
modelStudio FAQ & Troubleshooting
- Error occurred during the
modelStudio()computation fooplot doesn't show up on the dashboard
- Read the console output of
DALEX::explain(). There could be a warning message pointing to the
-
Updated
Jan 20, 2020 - Jupyter Notebook
-
Updated
Jan 27, 2020 - Python
-
Updated
Nov 12, 2019 - Jupyter Notebook
-
Updated
Jun 20, 2020 - Python
-
Updated
Jul 2, 2020 - Jupyter Notebook
-
Updated
Feb 1, 2020 - Python
-
Updated
May 27, 2020 - Python
-
Updated
Jul 1, 2020 - Jupyter Notebook
-
Updated
Jul 3, 2020 - Jupyter Notebook
-
Updated
Jun 16, 2020 - Python
-
Updated
Jul 2, 2020 - R
-
Updated
Jun 8, 2020 - Python
-
Updated
Jul 15, 2019 - Python
-
Updated
May 6, 2020 - Jupyter Notebook
Currently random search only works with the Coverage Pick global explanations. For future inclusion of Magix it needs to be applicable to all global explainers.
-
Updated
May 10, 2020 - C++
-
Updated
Jul 3, 2020 - Python
-
Updated
Feb 19, 2020 - Python
-
Updated
Jan 28, 2020 - Python
-
Updated
Jun 23, 2020 - Jupyter Notebook
-
Updated
Jun 27, 2020 - Jupyter Notebook
-
Updated
Jul 6, 2020 - Jupyter Notebook
-
Updated
Sep 8, 2019
Improve this page
Add a description, image, and links to the explainability topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the explainability topic, visit your repo's landing page and select "manage topics."
I don't see any documentation on how to sort the variables in the plot. I don't want them sorted by shap value but in the original order, since i'm studying the behaviour of a Wave and I want to see a multiclass distribution of shap values over time
Currently they appear as
t=24
t=32
t=1
....
I want them to appear as
t=1
t=2
t=3
t=4
...
Is it possible?