-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from christophM/cleanup
Rework API and prepare CRAN release
- Loading branch information
Showing
94 changed files
with
3,671 additions
and
3,489 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
^\.Rproj\.user$ | ||
README.* | ||
README_files | ||
cran-comments.md | ||
framework.jpg | ||
.travis.yml | ||
Makefile | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,6 @@ | |
*.swp | ||
iml.Rcheck | ||
..Rcheck | ||
README.html | ||
notes.md | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,13 @@ | ||
Package: iml | ||
Type: Package | ||
Title: Methods for interpretable machine learning | ||
Version: 0.1 | ||
Date: 2017-11-30 | ||
Author: Christoph Molnar | ||
Title: Interpretable Machine Learning | ||
Version: 0.2 | ||
Date: 2018-03-04 | ||
Authors@R: c(person(given = "Christoph", family = "Molnar", | ||
role = c("aut", "cre"), email = "[email protected]")) | ||
Maintainer: Christoph Molnar <[email protected]> | ||
Description: Model-agnostic interpretability methods for machine learning models. | ||
The iml package provides you with tools to analyse and explain the behaviour and prediction of black box machine learning models. | ||
Implemented tools are: partial dependence plots, local models (LIME), feature importance measure and many more. | ||
Description:The iml package provides model-agnostic interpretability methods to | ||
analyse and explain the behaviour and predictions of any black box machine learning model. | ||
Imports: R6, | ||
checkmate, | ||
dplyr, | ||
|
@@ -18,16 +16,15 @@ Imports: R6, | |
partykit, | ||
glmnet, | ||
Metrics, | ||
data.table, | ||
mlr | ||
data.table | ||
Suggests: randomForest, | ||
gower, | ||
testthat, | ||
rpart, | ||
MASS, | ||
caret, | ||
e1071, | ||
lime | ||
lime, | ||
mlr | ||
License: MIT + file LICENSE | ||
Roxygen: list(wrap = FALSE) | ||
RoxygenNote: 6.0.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,2 @@ | ||
MIT License | ||
|
||
Copyright (c) [year] [fullname] | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. | ||
YEAR: 2018 | ||
COPYRIGHT HOLDER: Christoph Molnar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# iml 0.2 | ||
* The API has been reworked: | ||
* User directly interacts with R6 classes (`pdp()` is now `PartialDependence$new()`). | ||
* User has to wrap the machine learning model with `Predictor$new()`. | ||
* New data points in `Shapley` and `LocalModel` can be set with `$explain()`. | ||
* `Lime` has been renamed to `LocalModel`. | ||
* Plots have been improved. | ||
* Documentation has been improved. | ||
|
||
# iml 0.1 | ||
Initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.