-
-
Notifications
You must be signed in to change notification settings - Fork 332
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Autogluon and explainerdashboard integration #270
Comments
I have never tried! As long as they are sklearn compatible and work with shap it should work I guess! |
If this is still of interest, I managed to make AutoGluon work with explainer dashboard. I used the most recent releases of both. You need to wrap the model into a wrapper class that changes the predict_proba function, as the default result of Autogluon is different of what explainer dashboard expects:
Then you can just call the dashboard using a training AutoGluon model:
|
wait, so the issue is that predict_proba doesn't return an np.ndarray by default? That should be easy enough to wrap or detect inside the library |
Indeed, that is the issue with this AutoML, most AutoML actually work out of the box or with a simple wrapper class similar to the one I posted above. |
Is there a way to load autogluon models into explainer dashboard?
The text was updated successfully, but these errors were encountered: