-
Notifications
You must be signed in to change notification settings - Fork 34
/
DESCRIPTION
75 lines (75 loc) · 2.49 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
Package: shapr
Version: 1.0.0.9000
Title: Prediction Explanation with Dependence-Aware Shapley Values
Description: Complex machine learning models are often hard to interpret. However, in
many situations it is crucial to understand and explain why a model made a specific
prediction. Shapley values is the only method for such prediction explanation framework
with a solid theoretical foundation. Previously known methods for estimating the Shapley
values do, however, assume feature independence. This package implements methods which accounts for any feature
dependence, and thereby produces more accurate estimates of the true Shapley values.
An accompanying Python wrapper (shaprpy) is available on GitHub.
Authors@R: c(
person("Martin", "Jullum", email = "[email protected]", role = c("cre", "aut"), comment = c(ORCID = "0000-0003-3908-5155")),
person("Lars Henry Berge", "Olsen", email = "[email protected]", role = "aut", comment = c(ORCID = "0009-0006-9360-6993")),
person("Annabelle", "Redelmeier", email = "[email protected]", role = "aut"),
person("Jon", "Lachmann", email = "[email protected]", role = "aut", comment = c(ORCID = "0000-0001-8396-5673")),
person("Nikolai", "Sellereite", email = "[email protected]", role = "aut", comment = c(ORCID = "0000-0002-4671-0337")),
person("Anders", "Løland", email = "[email protected]", role = "ctb"),
person("Jens Christian", "Wahl", email = "[email protected]", role = "ctb"),
person("Camilla", "Lingjærde", role = "ctb"),
person("Norsk Regnesentral", role = c("cph", "fnd"))
)
URL: https://norskregnesentral.github.io/shapr/, https://github.com/NorskRegnesentral/shapr/
BugReports: https://github.com/NorskRegnesentral/shapr/issues
License: MIT + file LICENSE
Encoding: UTF-8
LazyData: true
ByteCompile: true
Language: en-US
RoxygenNote: 7.3.2
Depends: R (>= 3.5.0)
Imports:
stats,
data.table,
Rcpp (>= 0.12.15),
Matrix,
future.apply,
methods
Suggests:
ranger,
xgboost,
mgcv,
testthat (>= 3.0.0),
knitr,
rmarkdown,
roxygen2,
ggplot2,
gbm,
party,
partykit,
waldo,
progressr,
future,
ggbeeswarm,
vdiffr,
forecast,
torch,
GGally,
progress,
coro,
parsnip,
recipes,
workflows,
tune,
dials,
yardstick,
hardhat,
rsample,
rlang,
cli
LinkingTo:
RcppArmadillo,
Rcpp
VignetteBuilder: knitr
Config/testthat/edition: 3
Roxygen: list(markdown = TRUE)