Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@ This explainer is based on the [SCORPION](https://sirrice.github.io/files/papers
Its goal is to provide explanations for outliers in the data, explaining why a certain data point is an outlier.\
This explainer is meant to work on series created as a result of groupby + aggregation operations.\
Explainer author: [@Itay Elyashiv](https://github.com/ItayELY)
### MetaInsight explainer
### MetaInsight explainer (Beta)
This explainer is based on the [MetaInsight](https://dl.acm.org/doi/abs/10.1145/3448016.3457267?casa_token=QWDjnCLOY3AAAAAA:sMFcURRijjH_1aDGzOkwspGJKANrnJWA5-uZNipzI_lh719s_uv9MDzg1H9UXJKIVRW0Q6_p7a-6qw) paper.\
Its goal is to find the most interesting patterns in the data, displaying them and the exceptions to those patterns in a user-friendly way.\
This explainer can work on any multidimensional data.\
Please note that this explainer is still in beta, and may not work as expected, and may be subject to changes in the future.\
Explainer author: [@Yuval Uner](https://github.com/YuvalUner)
9 changes: 5 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
numpy~=2.1.3
pandas~=2.2.3
matplotlib~=3.9.2
diptest
scipy
scikit-learn
pymannkendall
scipy>=1.14.1
singleton-decorator>=1.0.0
scikit-learn>=1.6.0
diptest>=0.9.0
pymannkendall>=1.4.1
16 changes: 8 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ def get_long_description():
},
install_requires=[
'wheel',
'pandas',
'numpy',
'matplotlib',
'pymannkendall',
'scipy',
'singleton-decorator',
'scikit-learn',
'diptest'
'pandas>=2.2.3',
'numpy>=2.1.3',
'matplotlib>=3.9.0',
'pymannkendall>=1.4.2',
'scipy>=1.14.1',
'singleton-decorator>=1.0.0',
'scikit-learn>=1.6.0',
'diptest>=0.9.0',
]
)
1 change: 1 addition & 0 deletions src/external_explainers/metainsight_explainer/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Please note that this explainer is still in beta.