Oege Dijk
Oege Dijk
Getting this Warning when plotting a tree, unclear where exactly in the code it comes from, but it appear to be a [matplotlib warning](https://github.com/molu8bits/modsecurity-parser/issues/8): ``` normalize=None does not normalize if...
Recently `dtreeviz` has added support for lightgbm models: https://github.com/parrt/dtreeviz/ So it would be cool to add the same tree visualization in explainerdashboard that already exist for RandomForest, ExtraTrees and XGBoost...
Hi there, I tried to run the demo by following the instructions, but get the following error: ``` Exception inside application: __init__() takes 1 positional argument but 2 were given...
A few simple changes to allow categorical features (such as for example CatBoost uses, but also xgboost and some sklearn models). The `catboost_demo.ipynb` notebook shows a demonstration. (Can be deleted)...
Thank you so much for helping improve the quality of Dash! We do our best to catch bugs during the release process, but we rely on your help to find...
Our integration tests are failing both locally and in the CI due to dash_duo.get_logs() returning None instead of []. Filed an issue with dash here: https://github.com/plotly/dash/issues/2712 In the meantime will...
adds support fot `shap.explainerGPUTree` bu passing `shap='gputree'` to the `explainer`. See https://shap.readthedocs.io/en/latest/example_notebooks/api_examples/explainers/GPUTree.html#
Seems related to this bug: https://github.com/shap/shap/issues/3363 Can be avoided with passing `shap_kwargs=dict(check_additivity=False)` to the explainer, but then you might get inaccurate shap values. Added check_additivity=False param to the skorch tests...
So Flask 2.3.0 deprecates a bunch of json support: https://flask.palletsprojects.com/en/2.3.x/changes/#version-2-3-0 This has been anticipated in flask-wtf release 1.1.1. However flask-simplelogin pins flask-wtf to 0.x: ``` Flask-WTF = "^0.15.1" ``` resulting...