Skip to content

Commit b6cc0ad

Browse files
committed
code structure changed. New code added. Now workds for sklearn models
1 parent 590a9ee commit b6cc0ad

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+10562
-206
lines changed

__init__.py

Lines changed: 1 addition & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1 @@
1-
from explainx.plotly_graphs import *
2-
from explainx.data_for_shap_graphs import *
3-
"""Organize all shap graphs here."""
4-
from explainx.feature_importance import *
5-
from explainx.feature_impact import *
6-
from explainx.summary_plot import *
7-
from explainx.shap_pdp import *
8-
9-
10-
"""This contains all sorts of graphs."""
11-
from explainx.dashboard import *
12-
from explainx.explain import *
13-
14-
15-
"""For data preprocessing"""
16-
from explainx.encode_decode_cat_col import *
17-
18-
"""To find protodash"""
19-
from explainx.protodash import *
20-
21-
"""To calculate Shap values"""
22-
from explainx.calculate_shap import *
1+
from explainx.lib import *
-357 Bytes
Binary file not shown.

__pycache__/explain.cpython-37.pyc

-1.21 KB
Binary file not shown.

__pycache__/imports.cpython-37.pyc

-807 Bytes
Binary file not shown.

datasets/heloc_dataset.csv

Lines changed: 10460 additions & 0 deletions
Large diffs are not rendered by default.
File renamed without changes.
File renamed without changes.

lib/__init__.py

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
from explainx.lib.plotly_graphs import *
2+
from explainx.lib.data_for_shap_graphs import *
3+
"""Organize all shap graphs here."""
4+
from explainx.lib.feature_importance import *
5+
from explainx.lib.feature_impact import *
6+
from explainx.lib.summary_plot import *
7+
from explainx.lib.shap_pdp import *
8+
9+
10+
"""This contains all sorts of graphs."""
11+
from explainx.lib.dashboard import *
12+
from explainx.lib.explain import *
13+
14+
15+
"""For data preprocessing"""
16+
from explainx.lib.encode_decode_cat_col import *
17+
18+
"""To find protodash"""
19+
from explainx.lib.protodash import *
20+
21+
"""To calculate Shap values"""
22+
from explainx.lib.calculate_shap import *
2.2 KB
Binary file not shown.
6.45 KB
Binary file not shown.

0 commit comments

Comments
 (0)