From 7f21a8bb16fc02ee5ec15be8375e0d724fcaa3bc Mon Sep 17 00:00:00 2001 From: Maximilian Date: Thu, 30 Nov 2023 12:41:11 +0100 Subject: [PATCH] bugfix with version --- shapiq/__init__.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/shapiq/__init__.py b/shapiq/__init__.py index d6f52220..38adc37a 100644 --- a/shapiq/__init__.py +++ b/shapiq/__init__.py @@ -1,7 +1,7 @@ """shapiq is a library creating explanations for machine learning models based on the well established Shapley value and its generalization to interaction. """ - +from __version__ import __version__ # approximator classes from .approximator import PermutationSamplingSII, PermutationSamplingSTI, RegressionFSI, ShapIQ @@ -25,6 +25,8 @@ ) __all__ = [ + # version + "__version__", # approximators "ShapIQ", "PermutationSamplingSII",