Skip to content

Commit

Permalink
Merge pull request #1 from imatiach-msft/ilmat/release-v0.1
Browse files Browse the repository at this point in the history
release v0.1.0.0
  • Loading branch information
imatiach-msft authored Sep 26, 2019
2 parents 76299e4 + ed4f475 commit 32c3573
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 30 deletions.
18 changes: 18 additions & 0 deletions python/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Microsoft Interpret Extensions SDK for Python

### This package has been tested with Python 2.7 and 3.6

This is the initial extensions SDK release.

Machine learning interpret community package is used to interpret black box ML models.

- The TabularExplainer can be used to give local and global feature importances
- The best explainer is automatically chosen for the user based on the model
- Local feature importances are for each evaluation row
- Global feature importances summarize the most importance features at the model-level
- The API supports both dense (numpy or pandas) and sparse (scipy) datasets
- For more advanced users, individual explainers can be used
- The KernelExplainer and MimicExplainer are for BlackBox models
- The MimicExplainer is faster but less accurate than the KernelExplainer
- The TreeExplainer is for tree-based models
- The DeepExplainer is for DNN tensorflow or pytorch models
20 changes: 0 additions & 20 deletions python/README.rst

This file was deleted.

19 changes: 9 additions & 10 deletions python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import os
import shutil

_major = '0.0'
_major = '0.1'
_minor = '0.0'

shutil.copyfile('../LICENSE', 'LICENSE.txt')
Expand All @@ -32,7 +32,7 @@
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: Other/Proprietary License',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
Expand Down Expand Up @@ -63,23 +63,22 @@
]
}

with open('README.rst', 'r', encoding='utf-8') as f:
with open('README.md', 'r', encoding='utf-8') as f:
README = f.read()
with open('HISTORY.rst', 'r', encoding='utf-8') as f:
HISTORY = f.read()
with open('../LICENSE', 'r', encoding='utf-8') as f:
inline_license = f.read()

setup(
name='interpret-extensions',
name='interpret-community',

version=SELFVERSION,

description='',
long_description=README + '\n\n' + HISTORY,
long_description_content_type='text/x-rst',
description='Microsoft Interpret Extensions SDK for Python',
long_description=README,
long_description_content_type='text/markdown',
author='Microsoft Corp',
license=inline_license,
author_email='[email protected]',
license='MIT License',
url='https://docs.microsoft.com/en-us/azure/machine-learning/service/',

classifiers=CLASSIFIERS,
Expand Down

0 comments on commit 32c3573

Please sign in to comment.