-
Notifications
You must be signed in to change notification settings - Fork 7
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 #42 from mayer79/release_candidate
Release candidate
- Loading branch information
Showing
9 changed files
with
62 additions
and
26 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Version: 0.3.0 | ||
Date: 2022-09-29 15:39:13 UTC | ||
SHA: 0652b701dc44c6446c9ed4c92e4da3d76089f7b6 |
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,22 +1,22 @@ | ||
Package: kernelshap | ||
Title: Kernel SHAP | ||
Version: 0.2.0.900 | ||
Version: 0.3.0 | ||
Authors@R: c( | ||
person("Michael", "Mayer", , "[email protected]", role = c("aut", "cre")), | ||
person("David", "Watson", , "[email protected]", role = "ctb") | ||
) | ||
Description: Multidimensional refinement of the Kernel SHAP algorithm | ||
described in Ian Covert and Su-In Lee (2021) | ||
<http://proceedings.mlr.press/v130/covert21a>. Depending on the | ||
number of features, Kernel SHAP values can be calculated exactly, by | ||
sampling, or by a combination of the two. As soon as sampling is | ||
involved, the algorithm iterates until convergence, and standard | ||
errors are provided. The package allows to work with any model that | ||
<http://proceedings.mlr.press/v130/covert21a>. The package allows to | ||
calculate Kernel SHAP values in an exact way, by iterative sampling | ||
(as in the reference above), or by a hybrid of the two. As soon as | ||
sampling is involved, the algorithm iterates until convergence, and | ||
standard errors are provided. The package works with any model that | ||
provides numeric predictions of dimension one or higher. Examples | ||
include linear regression, logistic regression (logit or probability | ||
scale), other generalized linear models, generalized additive models, | ||
and neural networks. The package plays well together with | ||
meta-learning packages like 'tidymodels', 'caret' or 'mlr3'. | ||
include linear regression, logistic regression (on logit or | ||
probability scale), other generalized linear models, generalized | ||
additive models, and neural networks. The package plays well together | ||
with meta-learning packages like 'tidymodels', 'caret' or 'mlr3'. | ||
Visualizations can be done using the R package 'shapviz'. | ||
License: GPL (>= 2) | ||
Depends: | ||
|
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,4 +1,4 @@ | ||
# kernelshap 0.2.0.900 DEVEL | ||
# kernelshap 0.3.0 | ||
|
||
## Major improvements | ||
|
||
|
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
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,32 @@ | ||
Hello CRAN | ||
|
||
This is an update with | ||
|
||
- a much better way to calculate *exact* KernelSHAP values, | ||
- and a very fast and accurate hybrid between exact and sampling. | ||
|
||
Furthermore, some defaults have been improved. As the package is maturing, the next | ||
update will hopefully be version 1.0.0. | ||
|
||
## Checks | ||
|
||
### `check(manual = TRUE, cran = TRUE)` | ||
|
||
0 errors ✔ | 0 warnings ✔ | 0 notes ✔ | ||
|
||
### `check_win_devel()` | ||
|
||
* checking for detritus in the temp directory ... NOTE | ||
Found the following files/directories: | ||
'lastMiKTeXException' | ||
|
||
0 errors ✔ | 0 warnings ✔ | 1 note ✖ | ||
|
||
### `check_rhub()` | ||
|
||
- Ubuntu Linux 20.04.1 LTS, R-release, GCC: Okay | ||
- Platform: Fedora Linux, R-devel, clang, gfortran: Note | ||
|
||
* checking HTML version of manual ... NOTE | ||
Skipping checking HTML validation: no command 'tidy' found | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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