Skip to content

Commit c0623fb

Browse files
authored
Merge pull request #27 from explainX/local_explanations
Local explanations
2 parents 248676f + c52cb1b commit c0623fb

Some content is hidden

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

60 files changed

+4397
-147
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ __pycache__/
88
*.csv
99
*.xlsx
1010
# Distribution / packaging
11+
.idea/
1112
.Python
1213
build/
1314
develop-eggs/

.idea/.gitignore

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/explainx.iml

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/Project_Default.xml

Lines changed: 152 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/profiles_settings.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.travis.yml

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,15 @@
1-
language: python # this works for Linux but is an error on macOS or Windows
1+
language: python # this works for Linux but is an error on macOS or Windows
22
python:
3-
- "2.7"
4-
- "3.4"
5-
- "3.5"
63
- "3.6" # current default Python on Travis CI
74
- "3.7"
8-
- "3.8"
95
jobs:
106
include:
11-
- name: "Python 3.8.0 on Xenial Linux"
7+
- name: "Python 3.6.0 on Xenial Linux"
128
python: 3.8 # this works for Linux but is ignored on macOS or Windows
13-
- name: "Python 3.7.4 on macOS"
9+
- name: "Python 3.6.0 on macOS"
1410
os: osx
1511
osx_image: xcode11.2 # Python 3.7.4 running on macOS 10.14.4
1612
language: shell # 'language: python' is an error on Travis CI macOS
17-
- name: "Python 3.8.0 on Windows"
18-
os: windows # Windows 10.0.17134 N/A Build 17134
19-
language: shell # 'language: python' is an error on Travis CI Windows
20-
before_install:
21-
- choco install python --version 3.8.0
22-
- python -m pip install --upgrade pip
23-
env: PATH=/c/Python38:/c/Python38/Scripts:$PATH
2413
install:
2514
- pip3 install --upgrade pip # all three OSes agree about 'pip3'
2615
- pip install -r requirements.txt

__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
from explainx.explain import *
2+
3+
from explainx.main import *

0 commit comments

Comments
 (0)