lgb.interprete.R 5.87 KB
Newer Older
1
#' Compute feature contribution of prediction
2
#'
3
#' Computes feature contribution components of rawscore prediction.
4
#'
5
6
7
8
#' @param model object of class \code{lgb.Booster}.
#' @param data a matrix object or a dgCMatrix object.
#' @param idxset a integer vector of indices of rows needed.
#' @param num_iteration number of iteration want to predict with, NULL or <= 0 means use best iteration.
9
#'
10
#' @return
11
#'
12
13
14
15
16
17
#' For regression, binary classification and lambdarank model, a \code{list} of \code{data.table} with the following columns:
#' \itemize{
#'   \item \code{Feature} Feature names in the model.
#'   \item \code{Contribution} The total contribution of this feature's splits.
#' }
#' For multiclass classification, a \code{list} of \code{data.table} with the Feature column and Contribution columns to each class.
18
#'
19
20
21
#' @examples
#' Sigmoid <- function(x) 1 / (1 + exp(-x))
#' Logit <- function(x) log(x / (1 - x))
22
#' data(agaricus.train, package = "lightgbm")
23
24
25
#' train <- agaricus.train
#' dtrain <- lgb.Dataset(train$data, label = train$label)
#' setinfo(dtrain, "init_score", rep(Logit(mean(train$label)), length(train$label)))
26
#' data(agaricus.test, package = "lightgbm")
27
#' test <- agaricus.test
28
#'
29
30
31
32
33
34
35
36
#' params <- list(
#'     objective = "binary"
#'     , learning_rate = 0.01
#'     , num_leaves = 63
#'     , max_depth = -1
#'     , min_data_in_leaf = 1
#'     , min_sum_hessian_in_leaf = 1
#' )
37
#' model <- lgb.train(params, dtrain, 20)
38
#'
39
#' tree_interpretation <- lgb.interprete(model, test$data, 1:5)
40
#'
41
#' @importFrom data.table as.data.table
42
43
#' @importFrom magrittr %>% %T>%
#' @export
44
45
46
47
lgb.interprete <- function(model,
                           data,
                           idxset,
                           num_iteration = NULL) {
48

49
  # Get tree model
50
  tree_dt <- lgb.model.dt.tree(model, num_iteration)
51

52
  # Check number of classes
53
  num_class <- model$.__enclos_env__$private$num_class
54

55
  # Get vector list
56
  tree_interpretation_dt_list <- vector(mode = "list", length = length(idxset))
57

58
  # Get parsed predictions of data
59
60
61
62
63
64
  leaf_index_mat_list <- model$predict(data[idxset, , drop = FALSE],
                                       num_iteration = num_iteration,
                                       predleaf = TRUE) %>%
    t(.) %>%
    data.table::as.data.table(.) %>%
    lapply(., FUN = function(x) matrix(x, ncol = num_class, byrow = TRUE))
65

66
  # Get list of trees
67
68
  tree_index_mat_list <- lapply(leaf_index_mat_list,
                                FUN = function(x) matrix(seq_len(length(x)) - 1, ncol = num_class, byrow = TRUE))
69

70
  # Sequence over idxset
71
72
73
  for (i in seq_along(idxset)) {
    tree_interpretation_dt_list[[i]] <- single.row.interprete(tree_dt, num_class, tree_index_mat_list[[i]], leaf_index_mat_list[[i]])
  }
74

75
  # Return interpretation list
76
  return(tree_interpretation_dt_list)
77

78
79
}

80
#' @importFrom data.table data.table
81
82
83
single.tree.interprete <- function(tree_dt,
                                   tree_id,
                                   leaf_id) {
84

85
  # Match tree id
86
  single_tree_dt <- tree_dt[tree_index == tree_id, ]
87

88
  # Get leaves
89
  leaf_dt <- single_tree_dt[leaf_index == leaf_id, .(leaf_index, leaf_parent, leaf_value)]
90

91
  # Get nodes
92
  node_dt <- single_tree_dt[!is.na(split_index), .(split_index, split_feature, node_parent, internal_value)]
93

94
  # Prepare sequences
95
96
  feature_seq <- character(0)
  value_seq <- numeric(0)
97

98
  # Get to root from leaf
99
  leaf_to_root <- function(parent_id, current_value) {
100

101
    # Store value
102
    value_seq <<- c(current_value, value_seq)
103

104
    # Check for null parent id
105
    if (!is.na(parent_id)) {
106

107
      # Not null means existing node
108
109
110
      this_node <- node_dt[split_index == parent_id, ]
      feature_seq <<- c(this_node[["split_feature"]], feature_seq)
      leaf_to_root(this_node[["node_parent"]], this_node[["internal_value"]])
111

112
    }
113

114
  }
115

116
  # Perform leaf to root conversion
117
  leaf_to_root(leaf_dt[["leaf_parent"]], leaf_dt[["leaf_value"]])
118

119
  # Return formatted data.table
120
  data.table::data.table(Feature = feature_seq, Contribution = diff.default(value_seq))
121

122
123
}

124
125
#' @importFrom data.table rbindlist
#' @importFrom magrittr %>% extract
126
127
128
multiple.tree.interprete <- function(tree_dt,
                                     tree_index,
                                     leaf_index) {
129

130
  # Apply each trees
131
132
133
134
135
136
137
  mapply(single.tree.interprete,
         tree_id = tree_index, leaf_id = leaf_index,
         MoreArgs = list(tree_dt = tree_dt),
         SIMPLIFY = FALSE, USE.NAMES = TRUE) %>%
    data.table::rbindlist(., use.names = TRUE) %>%
    magrittr::extract(., j = .(Contribution = sum(Contribution)), by = "Feature") %>%
    magrittr::extract(., i = order(abs(Contribution), decreasing = TRUE))
138

139
140
}

141
#' @importFrom data.table set setnames
142
single.row.interprete <- function(tree_dt, num_class, tree_index_mat, leaf_index_mat) {
143

144
  # Prepare vector list
145
  tree_interpretation <- vector(mode = "list", length = num_class)
146

147
  # Loop throughout each class
148
  for (i in seq_len(num_class)) {
149

150
    tree_interpretation[[i]] <- multiple.tree.interprete(tree_dt, tree_index_mat[,i], leaf_index_mat[,i]) %T>% {
151

152
      # Number of classes larger than 1 requires adjustment
153
154
155
156
      if (num_class > 1) {
        data.table::setnames(., old = "Contribution", new = paste("Class", i - 1))
      }
    }
157

158
  }
159

160
  # Check for numbe rof classes larger than 1
161
  if (num_class == 1) {
162

163
    # First interpretation element
164
    tree_interpretation_dt <- tree_interpretation[[1]]
165

166
  } else {
167

168
    # Full interpretation elements
169
170
    tree_interpretation_dt <- Reduce(f = function(x, y) merge(x, y, by = "Feature", all = TRUE),
                                     x = tree_interpretation)
171

172
    # Loop throughout each tree
173
    for (j in 2:ncol(tree_interpretation_dt)) {
174

175
176
177
178
      data.table::set(tree_interpretation_dt,
                      i = which(is.na(tree_interpretation_dt[[j]])),
                      j = j,
                      value = 0)
179

180
    }
181

182
  }
183

184
  # Return interpretation tree
185
186
  return(tree_interpretation_dt)
}