explainerdashboard icon indicating copy to clipboard operation
explainerdashboard copied to clipboard

Quickly build Explainable AI dashboards that show the inner workings of so-called "blackbox" machine learning models.

Results 50 explainerdashboard issues
Sort by recently updated
recently updated
newest added

Hello! Curious if you have a desired citation for this project. Thanks 🙏

I noticed conda is behind on version: https://github.com/conda-forge/explainerdashboard-feedstock/pull/41/

I am working on a [Dataiku][1] plugin, where I try to integrate ExplainerDashboard. They both use Dash and I initiate it like this: predictor = ... X_test = ... y_true...

# Summary In my project, we have a dataset with 1 `bool` column (with the rest being normal numeric columns). I'm trying to make an Hub with many dashboards, but...

Hello, I understand that the get_contrib_df function can be used to get the contributions of various features to the final predictions for a particular data index from the table. However,...

Hello, Is it possible to use the explainerdashboard for multioutput regressors? I have setup a regression model using the sklearn random forest regression to build models for multiple target variables....

When i run this code ``` explainer = ClassifierExplainer(model_lightgbm, x_test, y_test) ExplainerDashboard(explainer).run(mode='external') ``` I am getting error like => **Error loading layout** ![image](https://user-images.githubusercontent.com/66181520/163362095-57df200b-01ae-4fcf-a8f6-0162f95038d3.png) **How can i fix it ?** **BTW...

I'm trying to run the explainer dashboard using inline mode in Kaggle but it doesn't show anything

I have two issues with the new pipeline support. Here is ascreenshot of my dashboard: ![image](https://user-images.githubusercontent.com/56065345/165538459-bc634f18-5911-4f93-a2a8-6e36b247df4e.png) 1. The first issue is: Why are my one-hot encoded columns not shown as...

I am trying to upload external data into the dashboard using explainer.set_x_row_func() and explainer.set_y_func(). Does anyone know how to do this? Below is how to get around it, I tried...