Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Insert DIFFI in PyOD #3

Open
wants to merge 30 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
6d3c05a
Added plot.py
FrizzoDavide Oct 26, 2023
da47db5
Updated sklearn_mod_functions.py
FrizzoDavide Oct 26, 2023
6f867d3
Added diffi_tests.ipynb
FrizzoDavide Oct 26, 2023
f09fdab
Add some initial unit tests
FrizzoDavide Oct 26, 2023
fe64fe0
Plots from the Glass dataset
FrizzoDavide Oct 26, 2023
820e3ee
imp_score and plt_data files for Glass Dataset
FrizzoDavide Oct 26, 2023
8c0d72f
json settings for pytest
FrizzoDavide Oct 26, 2023
323efc8
Plots from Ionosphere dataset
FrizzoDavide Oct 26, 2023
206a238
Plots from Lympho dataset
FrizzoDavide Oct 26, 2023
1e1050f
Plots from Xaxis dataset
FrizzoDavide Oct 26, 2023
5b89c58
imp_scores and plt_data for other datasets
FrizzoDavide Oct 26, 2023
7560f96
Remove settings.json
FrizzoDavide Oct 26, 2023
fbbe728
Added git ignore file
FrizzoDavide Oct 26, 2023
542571a
Update unit tests
FrizzoDavide Oct 26, 2023
79b2665
Update diffi_tests
FrizzoDavide Oct 26, 2023
af3d34d
Update git ignore
FrizzoDavide Oct 26, 2023
77cc266
Added a new test in test_interpretability_module
FrizzoDavide Oct 26, 2023
4ddd773
Update plot.py
FrizzoDavide Oct 26, 2023
fe8113f
Unit tests on the methods of plot.py
FrizzoDavide Oct 26, 2023
7d0b3d7
Update diffi_tests.ipynb
FrizzoDavide Oct 26, 2023
b567313
Update git ignore
FrizzoDavide Oct 27, 2023
4eb3bba
Update diffi_tests.ipynb
FrizzoDavide Oct 27, 2023
e054a24
Update unit tests on tje plot generating functions
FrizzoDavide Oct 27, 2023
907a5eb
Update git ignore
FrizzoDavide Oct 27, 2023
1db03cc
Update diffi_tests.ipynb
FrizzoDavide Oct 30, 2023
3de1a21
Added the code adapted to PyOD
FrizzoDavide Oct 30, 2023
34f11a7
Update diffi_tests.ipynb
FrizzoDavide Oct 30, 2023
893af36
Update sklearn_mod_functions.py
FrizzoDavide Oct 30, 2023
714bccc
Update plot tests
FrizzoDavide Oct 30, 2023
d1d16be
Added unit tests on sklearn_mod_functions.py
FrizzoDavide Oct 30, 2023
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
24 changes: 24 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
#GIT IGNORE FILE

#Ignore settings.json

.vscode/
.vscode/settings.json

# Ignore the pycache folder

__pycache__/
*.pyc

# Ignore the imp_score and plt_data folders created in the unit tests
/tests/test_imp_score_global/*
/tests/test_imp_score_local/*
/tests/test_plt_data_local/*
/tests/test_plt_data_global/*
/tests/test_plots/*

# Ignore the images,imp_scores and plt_data folders
images/*
imp_scores/*
plt_data/*

Loading