Skip to content

Instantly share code, notes, and snippets.

@oegedijk
Created February 17, 2021 12:41
Show Gist options
  • Save oegedijk/12ab5783ab6fff75770b56e6ba59bd04 to your computer and use it in GitHub Desktop.
Save oegedijk/12ab5783ab6fff75770b56e6ba59bd04 to your computer and use it in GitHub Desktop.
from explainerdashboard import ClassifierExplainer, ExplainerDashboard
model = RandomForestClassifier().fit(X_train, y_train)
explainer = ClassifierExplainer(model, X_test, y_test)
ExplainerDashboard(explainer).run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment