utils.R 7.95 KB
Newer Older
1
lgb.is.Booster <- function(x) {
2
  return(lgb.check.r6.class(object = x, name = "lgb.Booster"))
3
}
4

5
lgb.is.Dataset <- function(x) {
6
  return(lgb.check.r6.class(object = x, name = "lgb.Dataset"))
7
}
8

9
lgb.is.null.handle <- function(x) {
10
11
12
13
14
15
  if (is.null(x)) {
    return(TRUE)
  }
  return(
    isTRUE(.Call(LGBM_HandleIsNull_R, x))
  )
16
}
Guolin Ke's avatar
Guolin Ke committed
17

18
19
# [description] Get the most recent error stored on the C++ side and raise it
#               as an R error.
20
21
lgb.last_error <- function() {
  err_msg <- .Call(
22
    LGBM_GetLastError_R
23
  )
24
  stop("api error: ", err_msg)
25
  return(invisible(NULL))
Guolin Ke's avatar
Guolin Ke committed
26
}
27
28

lgb.params2str <- function(params) {
29

30
  # Check for a list as input
31
  if (!identical(class(params), "list")) {
32
33
    stop("params must be a list")
  }
34

35
  # Split parameter names
Guolin Ke's avatar
Guolin Ke committed
36
  names(params) <- gsub("\\.", "_", names(params))
37

38
39
  # Setup temporary variable
  ret <- list()
40

41
  # Perform key value join
Guolin Ke's avatar
Guolin Ke committed
42
  for (key in names(params)) {
43

44
45
46
47
48
49
50
51
52
53
54
    # If a parameter has multiple values, join those values together with commas.
    # trimws() is necessary because format() will pad to make strings the same width
    val <- paste0(
      trimws(
        format(
          x = params[[key]]
          , scientific = FALSE
        )
      )
      , collapse = ","
    )
55
    if (nchar(val) <= 0L) next # Skip join
56

57
    # Join key value
Guolin Ke's avatar
Guolin Ke committed
58
    pair <- paste0(c(key, val), collapse = "=")
59
    ret <- c(ret, pair)
60

Guolin Ke's avatar
Guolin Ke committed
61
  }
62

63
  # Check ret length
64
  if (length(ret) == 0L) {
65
    return("")
Guolin Ke's avatar
Guolin Ke committed
66
  }
67

68
  return(paste0(ret, collapse = " "))
69

Guolin Ke's avatar
Guolin Ke committed
70
71
}

72
lgb.check_interaction_constraints <- function(interaction_constraints, column_names) {
73
74
75
76

  # Convert interaction constraints to feature numbers
  string_constraints <- list()

77
  if (!is.null(interaction_constraints)) {
78

79
    if (!methods::is(interaction_constraints, "list")) {
80
81
        stop("interaction_constraints must be a list")
    }
82
    if (!all(sapply(interaction_constraints, function(x) {is.character(x) || is.numeric(x)}))) {
83
84
85
        stop("every element in interaction_constraints must be a character vector or numeric vector")
    }

86
    for (constraint in interaction_constraints) {
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129

      # Check for character name
      if (is.character(constraint)) {

          constraint_indices <- as.integer(match(constraint, column_names) - 1L)

          # Provided indices, but some indices are not existing?
          if (sum(is.na(constraint_indices)) > 0L) {
            stop(
              "supplied an unknown feature in interaction_constraints "
              , sQuote(constraint[is.na(constraint_indices)])
            )
          }

        } else {

          # Check that constraint indices are at most number of features
          if (max(constraint) > length(column_names)) {
            stop(
              "supplied a too large value in interaction_constraints: "
              , max(constraint)
              , " but only "
              , length(column_names)
              , " features"
            )
          }

          # Store indices as [0, n-1] indexed instead of [1, n] indexed
          constraint_indices <- as.integer(constraint - 1L)

        }

        # Convert constraint to string
        constraint_string <- paste0("[", paste0(constraint_indices, collapse = ","), "]")
        string_constraints <- append(string_constraints, constraint_string)
    }

  }

  return(string_constraints)

}

Guolin Ke's avatar
Guolin Ke committed
130
131

lgb.check.r6.class <- function(object, name) {
132

133
  # Check for non-existence of R6 class or named class
134
  return(all(c("R6", name) %in% class(object)))
135

Guolin Ke's avatar
Guolin Ke committed
136
137
138
}

lgb.check.obj <- function(params, obj) {
139

140
  # List known objectives in a vector
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
  OBJECTIVES <- c(
    "regression"
    , "regression_l1"
    , "regression_l2"
    , "mean_squared_error"
    , "mse"
    , "l2_root"
    , "root_mean_squared_error"
    , "rmse"
    , "mean_absolute_error"
    , "mae"
    , "quantile"
    , "huber"
    , "fair"
    , "poisson"
    , "binary"
    , "lambdarank"
    , "multiclass"
    , "softmax"
    , "multiclassova"
    , "multiclass_ova"
    , "ova"
    , "ovr"
    , "xentropy"
    , "cross_entropy"
    , "xentlambda"
    , "cross_entropy_lambda"
    , "mean_absolute_percentage_error"
    , "mape"
    , "gamma"
    , "tweedie"
172
173
174
175
176
    , "rank_xendcg"
    , "xendcg"
    , "xe_ndcg"
    , "xe_ndcg_mart"
    , "xendcg_mart"
177
  )
178

179
  # Check whether the objective is empty or not, and take it from params if needed
180
181
182
  if (!is.null(obj)) {
    params$objective <- obj
  }
183

184
  # Check whether the objective is a character
185
  if (is.character(params$objective)) {
186

187
    # If the objective is a character, check if it is a known objective
188
    if (!(params$objective %in% OBJECTIVES)) {
189

190
      stop("lgb.check.obj: objective name error should be one of (", paste0(OBJECTIVES, collapse = ", "), ")")
191

Guolin Ke's avatar
Guolin Ke committed
192
    }
193

194
  } else if (!is.function(params$objective)) {
195

196
    stop("lgb.check.obj: objective should be a character or a function")
197

Guolin Ke's avatar
Guolin Ke committed
198
  }
199

200
  return(params)
201

Guolin Ke's avatar
Guolin Ke committed
202
203
}

204
# [description]
205
206
207
208
#     Take any character values from eval and store them in params$metric.
#     This has to account for the fact that `eval` could be a character vector,
#     a function, a list of functions, or a list with a mix of strings and
#     functions
Guolin Ke's avatar
Guolin Ke committed
209
lgb.check.eval <- function(params, eval) {
210

211
212
  if (is.null(params$metric)) {
    params$metric <- list()
213
214
  } else if (is.character(params$metric)) {
    params$metric <- as.list(params$metric)
215
  }
216

217
218
219
220
221
222
223
224
225
  # if 'eval' is a character vector or list, find the character
  # elements and add them to 'metric'
  if (!is.function(eval)) {
    for (i in seq_along(eval)) {
      element <- eval[[i]]
      if (is.character(element)) {
        params$metric <- append(params$metric, element)
      }
    }
226
  }
227

228
229
230
231
232
233
234
235
236
  # If more than one character metric was given, then "None" should
  # not be included
  if (length(params$metric) > 1L) {
    params$metric <- Filter(
        f = function(metric) {
          !(metric %in% .NO_METRIC_STRINGS())
        }
        , x = params$metric
    )
237
238
  }

239
240
241
  # duplicate metrics should be filtered out
  params$metric <- as.list(unique(unlist(params$metric)))

242
  return(params)
Guolin Ke's avatar
Guolin Ke committed
243
}
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302


# [description]
#
#     Resolve differences between passed-in keyword arguments, parameters,
#     and parameter aliases. This function exists because some functions in the
#     package take in parameters through their own keyword arguments other than
#     the `params` list.
#
#     If the same underlying parameter is provided multiple
#     ways, the first item in this list is used:
#
#         1. the main (non-alias) parameter found in `params`
#         2. the first alias of that parameter found in `params`
#         3. the keyword argument passed in
#
#     For example, "num_iterations" can also be provided to lgb.train()
#     via keyword "nrounds". lgb.train() will choose one value for this parameter
#     based on the first match in this list:
#
#         1. params[["num_iterations]]
#         2. the first alias of "num_iterations" found in params
#         3. the nrounds keyword argument
#
#     If multiple aliases are found in `params` for the same parameter, they are
#     all removed before returning `params`.
#
# [return]
#     params with num_iterations set to the chosen value, and other aliases
#     of num_iterations removed
lgb.check.wrapper_param <- function(main_param_name, params, alternative_kwarg_value) {

  aliases <- .PARAMETER_ALIASES()[[main_param_name]]
  aliases_provided <- names(params)[names(params) %in% aliases]
  aliases_provided <- aliases_provided[aliases_provided != main_param_name]

  # prefer the main parameter
  if (!is.null(params[[main_param_name]])) {
    for (param in aliases_provided) {
      params[[param]] <- NULL
    }
    return(params)
  }

  # if the main parameter wasn't proovided, prefer the first alias
  if (length(aliases_provided) > 0L) {
    first_param <- aliases_provided[1L]
    params[[main_param_name]] <- params[[first_param]]
    for (param in aliases_provided) {
      params[[param]] <- NULL
    }
    return(params)
  }

  # if not provided in params at all, use the alternative value provided
  # through a keyword argument from lgb.train(), lgb.cv(), etc.
  params[[main_param_name]] <- alternative_kwarg_value
  return(params)
}