TeamHG-Memex / eli5

A library for debugging/inspecting machine learning classifiers and explaining their predictions
http://eli5.readthedocs.io
MIT License
2.76k stars 332 forks source link

add a tutorial for decision trees, random forests and gradient boosting methods #119

Closed kmike closed 7 years ago

kmike commented 7 years ago

I think sklearn.tree, sklearn.ensemble and xgboost support deserves its own tutorial. It should show examples for all of them and explain how to interpret the results:

ritviksahajpal commented 7 years ago

thanks for an excellent package @kmike , are you planning to add a tutorial for a regression example as well?

kmike commented 7 years ago

A good call @ritviksahajpal, it'd be great for tutorial for cover regression as well. Thanks for the suggestion!

lopuhin commented 7 years ago

Here I started writing a tutorial on https://www.kaggle.com/c/titanic/data - it has numeric, categorical and text features, is small and easy to understand. The plan is to mostly use XGBoost cause it seems more popular, but also show that it works with sklearn tree ensembles as well.

kmike commented 7 years ago

Fixed by https://github.com/TeamHG-Memex/eli5/pull/136. I opened another ticket (#145) for the regression tutorial.