shapiq 1.3.1__tar.gz → 1.3.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {shapiq-1.3.1 → shapiq-1.3.2}/CHANGELOG.md +5 -0
- {shapiq-1.3.1/shapiq.egg-info → shapiq-1.3.2}/PKG-INFO +6 -1
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/__init__.py +1 -1
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/explainer/tabular.py +0 -3
- {shapiq-1.3.1 → shapiq-1.3.2/shapiq.egg-info}/PKG-INFO +6 -1
- {shapiq-1.3.1 → shapiq-1.3.2}/LICENSE +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/README.md +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/pyproject.toml +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/setup.cfg +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/approximator/__init__.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/approximator/base.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/approximator/marginals/__init__.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/approximator/marginals/owen.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/approximator/marginals/stratified.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/approximator/montecarlo/__init__.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/approximator/montecarlo/base.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/approximator/montecarlo/shapiq.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/approximator/montecarlo/svarmiq.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/approximator/permutation/__init__.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/approximator/permutation/sii.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/approximator/permutation/stii.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/approximator/permutation/sv.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/approximator/regression/__init__.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/approximator/regression/base.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/approximator/regression/faithful.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/approximator/regression/kadd_shap.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/approximator/regression/kernelshap.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/approximator/regression/kernelshapiq.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/approximator/sampling.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/approximator/sparse/__init__.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/approximator/sparse/base.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/approximator/sparse/spex.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/benchmark/__init__.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/benchmark/configuration.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/benchmark/load.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/benchmark/metrics.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/benchmark/plot.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/benchmark/precompute.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/benchmark/run.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/datasets/__init__.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/datasets/_all.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/explainer/__init__.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/explainer/agnostic.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/explainer/base.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/explainer/configuration.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/explainer/custom_types.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/explainer/tabpfn.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/explainer/tree/__init__.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/explainer/tree/base.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/explainer/tree/conversion/__init__.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/explainer/tree/conversion/edges.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/explainer/tree/conversion/lightgbm.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/explainer/tree/conversion/sklearn.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/explainer/tree/conversion/xgboost.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/explainer/tree/explainer.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/explainer/tree/treeshapiq.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/explainer/tree/utils.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/explainer/tree/validation.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/explainer/utils.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/explainer/validation.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/game_theory/__init__.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/game_theory/aggregation.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/game_theory/core.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/game_theory/exact.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/game_theory/indices.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/game_theory/moebius_converter.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/__init__.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/base.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/__init__.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/_setup/__init__.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/_setup/_california_torch_setup.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/_setup/_resnet_setup.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/_setup/_vit_setup.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/data_valuation/__init__.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/data_valuation/base.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/data_valuation/benchmark.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/dataset_valuation/__init__.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/dataset_valuation/base.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/dataset_valuation/benchmark.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/ensemble_selection/__init__.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/ensemble_selection/base.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/ensemble_selection/benchmark.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/ensemble_selection/benchmark_random_forest.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/feature_selection/__init__.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/feature_selection/base.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/feature_selection/benchmark.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/global_xai/__init__.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/global_xai/base.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/global_xai/benchmark_tabular.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/local_xai/__init__.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/local_xai/base.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/local_xai/benchmark_image.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/local_xai/benchmark_language.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/local_xai/benchmark_tabular.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/setup.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/synthetic/__init__.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/synthetic/dummy.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/synthetic/random_game.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/synthetic/soum.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/treeshapiq_xai/__init__.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/treeshapiq_xai/base.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/treeshapiq_xai/benchmark.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/uncertainty/__init__.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/uncertainty/base.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/uncertainty/benchmark.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/unsupervised_cluster/__init__.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/unsupervised_cluster/base.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/unsupervised_cluster/benchmark.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/unsupervised_data/__init__.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/unsupervised_data/base.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/unsupervised_data/benchmark.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/imputer/__init__.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/imputer/base.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/imputer/baseline_imputer.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/imputer/conditional_imputer.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/imputer/marginal_imputer.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/imputer/tabpfn_imputer.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/interaction_values.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/plot/__init__.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/plot/_config.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/plot/bar.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/plot/beeswarm.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/plot/force.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/plot/network.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/plot/sentence.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/plot/si_graph.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/plot/stacked_bar.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/plot/upset.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/plot/utils.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/plot/waterfall.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/py.typed +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/typing.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/utils/__init__.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/utils/datasets.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/utils/errors.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/utils/modules.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/utils/saving.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/utils/sets.py +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq.egg-info/SOURCES.txt +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq.egg-info/dependency_links.txt +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq.egg-info/requires.txt +0 -0
- {shapiq-1.3.1 → shapiq-1.3.2}/shapiq.egg-info/top_level.txt +0 -0
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v1.3.2 (2025-10-14)
|
|
4
|
+
|
|
5
|
+
### Hotfix
|
|
6
|
+
Removes `overrides` import in tabular explainer, which is not part of the package dependencies resulting in an ImportError when importing `shapiq`. [#436](https://github.com/mmschlk/shapiq/issues/436)
|
|
7
|
+
|
|
3
8
|
## v1.3.1 (2025-07-11)
|
|
4
9
|
|
|
5
10
|
### New Features
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: shapiq
|
|
3
|
-
Version: 1.3.
|
|
3
|
+
Version: 1.3.2
|
|
4
4
|
Summary: Shapley Interactions for Machine Learning
|
|
5
5
|
Author: Hubert Baniecki, Fabian Fumagalli
|
|
6
6
|
Author-email: Maximilian Muschalik <Maximilian.Muschalik@lmu.de>
|
|
@@ -275,6 +275,11 @@ Built with ❤️ by the shapiq team.
|
|
|
275
275
|
|
|
276
276
|
# Changelog
|
|
277
277
|
|
|
278
|
+
## v1.3.2 (2025-10-14)
|
|
279
|
+
|
|
280
|
+
### Hotfix
|
|
281
|
+
Removes `overrides` import in tabular explainer, which is not part of the package dependencies resulting in an ImportError when importing `shapiq`. [#436](https://github.com/mmschlk/shapiq/issues/436)
|
|
282
|
+
|
|
278
283
|
## v1.3.1 (2025-07-11)
|
|
279
284
|
|
|
280
285
|
### New Features
|
|
@@ -4,7 +4,7 @@ shapiq is a library creating explanations for machine learning models based on
|
|
|
4
4
|
the well established Shapley value and its generalization to interaction.
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
-
__version__ = "1.3.
|
|
7
|
+
__version__ = "1.3.2"
|
|
8
8
|
|
|
9
9
|
# approximator classes
|
|
10
10
|
from .approximator import (
|
|
@@ -5,8 +5,6 @@ from __future__ import annotations
|
|
|
5
5
|
from typing import TYPE_CHECKING, Any, Literal
|
|
6
6
|
from warnings import warn
|
|
7
7
|
|
|
8
|
-
from overrides import overrides
|
|
9
|
-
|
|
10
8
|
from shapiq.explainer.base import Explainer
|
|
11
9
|
from shapiq.interaction_values import InteractionValues, finalize_computed_interactions
|
|
12
10
|
|
|
@@ -165,7 +163,6 @@ class TabularExplainer(Explainer):
|
|
|
165
163
|
approximator, self._index, self._max_order, self._n_features, random_state
|
|
166
164
|
)
|
|
167
165
|
|
|
168
|
-
@overrides
|
|
169
166
|
def explain_function(
|
|
170
167
|
self,
|
|
171
168
|
x: np.ndarray,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: shapiq
|
|
3
|
-
Version: 1.3.
|
|
3
|
+
Version: 1.3.2
|
|
4
4
|
Summary: Shapley Interactions for Machine Learning
|
|
5
5
|
Author: Hubert Baniecki, Fabian Fumagalli
|
|
6
6
|
Author-email: Maximilian Muschalik <Maximilian.Muschalik@lmu.de>
|
|
@@ -275,6 +275,11 @@ Built with ❤️ by the shapiq team.
|
|
|
275
275
|
|
|
276
276
|
# Changelog
|
|
277
277
|
|
|
278
|
+
## v1.3.2 (2025-10-14)
|
|
279
|
+
|
|
280
|
+
### Hotfix
|
|
281
|
+
Removes `overrides` import in tabular explainer, which is not part of the package dependencies resulting in an ImportError when importing `shapiq`. [#436](https://github.com/mmschlk/shapiq/issues/436)
|
|
282
|
+
|
|
278
283
|
## v1.3.1 (2025-07-11)
|
|
279
284
|
|
|
280
285
|
### New Features
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/ensemble_selection/benchmark_random_forest.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|