-
Notifications
You must be signed in to change notification settings - Fork 110
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
Integrate h2o
with lime
#40
Comments
That sounds great. Please do |
PR submitted. It's relatively straightforward with simple |
It’s supposed to be straightforward so that’s perfect🙂 |
Hey Thomas, everything should be ready to go with PR42. Let me know if anything else needs to be changed. |
Merge conflict with NEWS.md was resolved. Let me know if anything else. Thanks. |
Did you try this with the H2O XGBoost model? I'm getting a weird error when I try to use it with one. It's working fine for gbm, but not xgboost. I simply changed from calling Here is the error I'm seeing:
|
Can you provide a reproducible example. Also maybe set up as a new issue. |
I will do that. Seems like h2o's xgboost implementation is doing something odd with the response domain. My response variable is TRUE/FALSE, but it's showing up as 1/0 when using predict(). I'll try to put together a small reproducible example and open a new issue. |
@mdancho84 Were you able to intergrate H2o with Lime? Do you know of anyone working on H2O python itergration with Lime. |
Yes, h2o and lime are integrated into Thomas's R lime package so you can directly use h2o model output without creating custom I don't know if @marcotcr's python lime library has a direct integration, but I do know that it is possible to use with H2O. See here: https://marcotcr.github.io/lime/tutorials/Tutorial_H2O_continuous_and_cat.html |
Hi @thomasp85 I have tried My example: |
Explaining 10K observations is a lot. Remember, lime is local, not global. Maybe try 40 to get a small sample of what’s going on locally via lime explanation. I recommend a simple correlation analysis for 10K observations to get global relationships. |
@thomasp85
Thanks for your work getting
lime
setup in R. Already had several use cases where I implementedh2o
andlime
together... the two work really well. If you're OK with it, I'll work on an integration to get most of the classes (at least the majorh2o
models) intolime
.-Matt
The text was updated successfully, but these errors were encountered: