We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 389865f commit f107c4dCopy full SHA for f107c4d
explainerdashboard/__init__.py
@@ -1,4 +1,4 @@
1
-__version__ = "0.4.8"
+__version__ = "0.5.0"
2
3
from .explainers import ClassifierExplainer, RegressionExplainer # noqa
4
from .dashboards import ExplainerDashboard, ExplainerHub, InlineExplainer # noqa
explainerdashboard/explainers.py
@@ -51,6 +51,7 @@
51
52
from .explainer_methods import *
53
from .explainer_plots import *
54
+from . import __version__
55
56
57
import plotly.io as pio
@@ -388,7 +389,7 @@ def __init__(
388
389
if not hasattr(self, "interactions_should_work"):
390
self.interactions_should_work = True
391
- self.__version__ = "0.4.8"
392
+ self.__version__ = __version__
393
394
def get_lock(self):
395
if not hasattr(self, "_lock"):
0 commit comments