File tree 3 files changed +21
-4
lines changed
3 files changed +21
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Release Notes
2
2
3
3
4
+ ## Version 0.4.6:
5
+
6
+
7
+ ### Bug Fixes
8
+ - should now work with the format of shap 0.45 that returns a three dimensional np.array instead of a list of 2-dimensional np.arrays for classifiers
9
+ -
10
+
11
+ ### Improvements
12
+ - Fixed several pandas warning about to be deprecated behaviours
13
+ -
14
+
15
+ ### Other Changes
16
+ -
17
+ -
18
+
19
+
20
+
4
21
## Version 0.4.4:
5
22
### Breaking Changes
6
23
-
Original file line number Diff line number Diff line change 1
- ___version__ = "0.4.5 "
1
+ ___version__ = "0.4.6 "
2
2
3
- from .explainers import ClassifierExplainer , RegressionExplainer
4
- from .dashboards import ExplainerDashboard , ExplainerHub , InlineExplainer
3
+ from .explainers import ClassifierExplainer , RegressionExplainer # noqa
4
+ from .dashboards import ExplainerDashboard , ExplainerHub , InlineExplainer # noqa
Original file line number Diff line number Diff line change 5
5
6
6
setup (
7
7
name = "explainerdashboard" ,
8
- version = "0.4.5 " ,
8
+ version = "0.4.6 " ,
9
9
description = 'Quickly build Explainable AI dashboards that show the inner workings of so-called "blackbox" machine learning models.' ,
10
10
long_description = """
11
11
You can’t perform that action at this time.
0 commit comments