File tree Expand file tree Collapse file tree 6 files changed +18
-5
lines changed Expand file tree Collapse file tree 6 files changed +18
-5
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,18 @@ All notable changes to this project will be documented in this file.
44The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
55and the versioning is mostly derived from [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
66
7+ ## [ v0.1.18] - 2019-10-09
8+ ### Added
9+ - Added "main_attr" argument to EBM models. Can now select a subset of features to train main effects on.
10+ - Added AzureML notebook VM detection for visualizations (switches to inline).
11+ ### Fixed
12+ - Missing values now correctly throw exceptions on explainers.
13+ - Major visualization fix for pairwise interaction heatmaps from EBM.
14+ - Corrected inline visualization height in Notebooks.
15+ ### Changed
16+ - Various internal C++ fixes.
17+ - New error messages around EBM if the model isn't fitted before calling explain_ * .
18+
719## [ v0.1.17] - 2019-09-24
820### Fixed
921- Morris sensitivity now works for both predict and predict_proba on scikit models.
@@ -203,6 +215,7 @@ and the versioning is mostly derived from [Semantic Versioning](https://semver.o
203215- Libraries are statically linked where possible.
204216- Code now conforms to Python Black and its associated flake8.
205217
218+ [ v0.1.18 ] : https://github.com/microsoft/interpret/releases/tag/v0.1.18
206219[ v0.1.17 ] : https://github.com/microsoft/interpret/releases/tag/v0.1.17
207220[ v0.1.16 ] : https://github.com/microsoft/interpret/releases/tag/v0.1.16
208221[ v0.1.15 ] : https://github.com/microsoft/interpret/releases/tag/v0.1.15
Original file line number Diff line number Diff line change 22# Distributed under the MIT software license
33
44# NOTE: Version is replaced by a regex script.
5- __version__ = "0.1.17 "
5+ __version__ = "0.1.18 "
Original file line number Diff line number Diff line change 11{
22 "name" : " interpret-inline" ,
3- "version" : " 0.1.17 " ,
3+ "version" : " 0.1.18 " ,
44 "description" : " Interpret inline library for exposing UX across all notebook environments." ,
55 "main" : " index.js" ,
66 "keywords" : [],
Original file line number Diff line number Diff line change 55
66name = "interpret-core"
77# NOTE: Version is replaced by a regex script.
8- version = "0.1.17 "
8+ version = "0.1.18 "
99long_description = """
1010Core system for **the** interpret package.
1111
Original file line number Diff line number Diff line change 55
66name = "interpret"
77# NOTE: Version is replaced by a regex script.
8- version = "0.1.17 "
8+ version = "0.1.18 "
99long_description = """
1010In the beginning machines learned in darkness, and data scientists struggled in the void to explain them.
1111
Original file line number Diff line number Diff line change 2525 (interpret_core_setup , 'version = "{}"' ),
2626 (interpret_setup , 'version = "{}"' ),
2727 (interpret_core_version , '__version__ = "{}"' ),
28- (interpret_inline_version , 'version: "{}"' )
28+ (interpret_inline_version , ' " version" : "{}", ' )
2929 ]
3030 for target_path , target_format in targets :
3131 new_lines = []
You can’t perform that action at this time.
0 commit comments