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.
Files changed (142) hide show
  1. {shapiq-1.3.1 → shapiq-1.3.2}/CHANGELOG.md +5 -0
  2. {shapiq-1.3.1/shapiq.egg-info → shapiq-1.3.2}/PKG-INFO +6 -1
  3. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/__init__.py +1 -1
  4. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/explainer/tabular.py +0 -3
  5. {shapiq-1.3.1 → shapiq-1.3.2/shapiq.egg-info}/PKG-INFO +6 -1
  6. {shapiq-1.3.1 → shapiq-1.3.2}/LICENSE +0 -0
  7. {shapiq-1.3.1 → shapiq-1.3.2}/README.md +0 -0
  8. {shapiq-1.3.1 → shapiq-1.3.2}/pyproject.toml +0 -0
  9. {shapiq-1.3.1 → shapiq-1.3.2}/setup.cfg +0 -0
  10. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/approximator/__init__.py +0 -0
  11. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/approximator/base.py +0 -0
  12. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/approximator/marginals/__init__.py +0 -0
  13. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/approximator/marginals/owen.py +0 -0
  14. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/approximator/marginals/stratified.py +0 -0
  15. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/approximator/montecarlo/__init__.py +0 -0
  16. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/approximator/montecarlo/base.py +0 -0
  17. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/approximator/montecarlo/shapiq.py +0 -0
  18. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/approximator/montecarlo/svarmiq.py +0 -0
  19. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/approximator/permutation/__init__.py +0 -0
  20. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/approximator/permutation/sii.py +0 -0
  21. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/approximator/permutation/stii.py +0 -0
  22. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/approximator/permutation/sv.py +0 -0
  23. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/approximator/regression/__init__.py +0 -0
  24. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/approximator/regression/base.py +0 -0
  25. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/approximator/regression/faithful.py +0 -0
  26. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/approximator/regression/kadd_shap.py +0 -0
  27. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/approximator/regression/kernelshap.py +0 -0
  28. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/approximator/regression/kernelshapiq.py +0 -0
  29. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/approximator/sampling.py +0 -0
  30. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/approximator/sparse/__init__.py +0 -0
  31. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/approximator/sparse/base.py +0 -0
  32. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/approximator/sparse/spex.py +0 -0
  33. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/benchmark/__init__.py +0 -0
  34. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/benchmark/configuration.py +0 -0
  35. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/benchmark/load.py +0 -0
  36. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/benchmark/metrics.py +0 -0
  37. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/benchmark/plot.py +0 -0
  38. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/benchmark/precompute.py +0 -0
  39. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/benchmark/run.py +0 -0
  40. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/datasets/__init__.py +0 -0
  41. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/datasets/_all.py +0 -0
  42. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/explainer/__init__.py +0 -0
  43. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/explainer/agnostic.py +0 -0
  44. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/explainer/base.py +0 -0
  45. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/explainer/configuration.py +0 -0
  46. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/explainer/custom_types.py +0 -0
  47. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/explainer/tabpfn.py +0 -0
  48. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/explainer/tree/__init__.py +0 -0
  49. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/explainer/tree/base.py +0 -0
  50. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/explainer/tree/conversion/__init__.py +0 -0
  51. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/explainer/tree/conversion/edges.py +0 -0
  52. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/explainer/tree/conversion/lightgbm.py +0 -0
  53. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/explainer/tree/conversion/sklearn.py +0 -0
  54. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/explainer/tree/conversion/xgboost.py +0 -0
  55. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/explainer/tree/explainer.py +0 -0
  56. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/explainer/tree/treeshapiq.py +0 -0
  57. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/explainer/tree/utils.py +0 -0
  58. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/explainer/tree/validation.py +0 -0
  59. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/explainer/utils.py +0 -0
  60. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/explainer/validation.py +0 -0
  61. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/game_theory/__init__.py +0 -0
  62. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/game_theory/aggregation.py +0 -0
  63. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/game_theory/core.py +0 -0
  64. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/game_theory/exact.py +0 -0
  65. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/game_theory/indices.py +0 -0
  66. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/game_theory/moebius_converter.py +0 -0
  67. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/__init__.py +0 -0
  68. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/base.py +0 -0
  69. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/__init__.py +0 -0
  70. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/_setup/__init__.py +0 -0
  71. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/_setup/_california_torch_setup.py +0 -0
  72. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/_setup/_resnet_setup.py +0 -0
  73. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/_setup/_vit_setup.py +0 -0
  74. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/data_valuation/__init__.py +0 -0
  75. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/data_valuation/base.py +0 -0
  76. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/data_valuation/benchmark.py +0 -0
  77. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/dataset_valuation/__init__.py +0 -0
  78. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/dataset_valuation/base.py +0 -0
  79. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/dataset_valuation/benchmark.py +0 -0
  80. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/ensemble_selection/__init__.py +0 -0
  81. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/ensemble_selection/base.py +0 -0
  82. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/ensemble_selection/benchmark.py +0 -0
  83. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/ensemble_selection/benchmark_random_forest.py +0 -0
  84. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/feature_selection/__init__.py +0 -0
  85. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/feature_selection/base.py +0 -0
  86. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/feature_selection/benchmark.py +0 -0
  87. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/global_xai/__init__.py +0 -0
  88. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/global_xai/base.py +0 -0
  89. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/global_xai/benchmark_tabular.py +0 -0
  90. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/local_xai/__init__.py +0 -0
  91. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/local_xai/base.py +0 -0
  92. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/local_xai/benchmark_image.py +0 -0
  93. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/local_xai/benchmark_language.py +0 -0
  94. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/local_xai/benchmark_tabular.py +0 -0
  95. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/setup.py +0 -0
  96. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/synthetic/__init__.py +0 -0
  97. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/synthetic/dummy.py +0 -0
  98. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/synthetic/random_game.py +0 -0
  99. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/synthetic/soum.py +0 -0
  100. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/treeshapiq_xai/__init__.py +0 -0
  101. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/treeshapiq_xai/base.py +0 -0
  102. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/treeshapiq_xai/benchmark.py +0 -0
  103. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/uncertainty/__init__.py +0 -0
  104. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/uncertainty/base.py +0 -0
  105. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/uncertainty/benchmark.py +0 -0
  106. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/unsupervised_cluster/__init__.py +0 -0
  107. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/unsupervised_cluster/base.py +0 -0
  108. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/unsupervised_cluster/benchmark.py +0 -0
  109. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/unsupervised_data/__init__.py +0 -0
  110. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/unsupervised_data/base.py +0 -0
  111. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/benchmark/unsupervised_data/benchmark.py +0 -0
  112. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/imputer/__init__.py +0 -0
  113. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/imputer/base.py +0 -0
  114. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/imputer/baseline_imputer.py +0 -0
  115. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/imputer/conditional_imputer.py +0 -0
  116. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/imputer/marginal_imputer.py +0 -0
  117. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/games/imputer/tabpfn_imputer.py +0 -0
  118. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/interaction_values.py +0 -0
  119. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/plot/__init__.py +0 -0
  120. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/plot/_config.py +0 -0
  121. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/plot/bar.py +0 -0
  122. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/plot/beeswarm.py +0 -0
  123. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/plot/force.py +0 -0
  124. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/plot/network.py +0 -0
  125. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/plot/sentence.py +0 -0
  126. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/plot/si_graph.py +0 -0
  127. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/plot/stacked_bar.py +0 -0
  128. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/plot/upset.py +0 -0
  129. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/plot/utils.py +0 -0
  130. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/plot/waterfall.py +0 -0
  131. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/py.typed +0 -0
  132. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/typing.py +0 -0
  133. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/utils/__init__.py +0 -0
  134. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/utils/datasets.py +0 -0
  135. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/utils/errors.py +0 -0
  136. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/utils/modules.py +0 -0
  137. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/utils/saving.py +0 -0
  138. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq/utils/sets.py +0 -0
  139. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq.egg-info/SOURCES.txt +0 -0
  140. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq.egg-info/dependency_links.txt +0 -0
  141. {shapiq-1.3.1 → shapiq-1.3.2}/shapiq.egg-info/requires.txt +0 -0
  142. {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.1
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.1"
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.1
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