saveRDS.lgb.Booster.R 2.94 KB
Newer Older
1
#' @name saveRDS.lgb.Booster
2
3
4
5
6
#' @title saveRDS for \code{lgb.Booster} models (DEPRECATED)
#' @description Calls \code{saveRDS} on an \code{lgb.Booster} object, making it serializable before the call if
#'              it isn't already.
#'
#'              \bold{This function throws a warning and will be removed in future versions.}
7
#' @param object \code{lgb.Booster} object to serialize.
8
#' @param file a connection or the name of the file where the R object is saved to or read from.
9
10
11
12
13
14
15
16
#' @param ascii a logical. If TRUE or NA, an ASCII representation is written; otherwise (default),
#'              a binary one is used. See the comments in the help for save.
#' @param version the workspace format version to use. \code{NULL} specifies the current default
#'                version (2). Versions prior to 2 are not supported, so this will only be relevant
#'                when there are later versions.
#' @param compress a logical specifying whether saving to a named file is to use "gzip" compression,
#'                 or one of \code{"gzip"}, \code{"bzip2"} or \code{"xz"} to indicate the type of
#'                 compression to be used. Ignored if file is a connection.
17
18
#' @param refhook a hook function for handling reference objects.
#' @param raw whether to save the model in a raw variable or not, recommended to leave it to \code{TRUE}.
19
#'
20
#' @return NULL invisibly.
21
#'
22
#' @examples
23
#' \donttest{
24
#' library(lightgbm)
25
26
#' \dontshow{setLGBMthreads(2L)}
#' \dontshow{data.table::setDTthreads(1L)}
27
28
29
30
31
32
#' data(agaricus.train, package = "lightgbm")
#' train <- agaricus.train
#' dtrain <- lgb.Dataset(train$data, label = train$label)
#' data(agaricus.test, package = "lightgbm")
#' test <- agaricus.test
#' dtest <- lgb.Dataset.create.valid(dtrain, test$data, label = test$label)
33
34
35
36
37
#' params <- list(
#'   objective = "regression"
#'   , metric = "l2"
#'   , min_data = 1L
#'   , learning_rate = 1.0
38
#'   , num_threads = 2L
39
#' )
40
#' valids <- list(test = dtest)
41
#' model <- lgb.train(
42
43
#'     params = params
#'     , data = dtrain
44
#'     , nrounds = 10L
45
#'     , valids = valids
46
#'     , early_stopping_rounds = 5L
47
#' )
48
49
#' model_file <- tempfile(fileext = ".rds")
#' saveRDS.lgb.Booster(model, model_file)
50
#' }
51
#' @export
52
saveRDS.lgb.Booster <- function(object,
53
                                file,
54
55
56
57
58
                                ascii = FALSE,
                                version = NULL,
                                compress = TRUE,
                                refhook = NULL,
                                raw = TRUE) {
59

60
  warning("'saveRDS.lgb.Booster' is deprecated and will be removed in a future release. Use saveRDS() instead.")
61

62
  if (!.is_Booster(x = object)) {
63
64
    stop("saveRDS.lgb.Booster: object should be an ", sQuote("lgb.Booster"))
  }
65

66
67
  if (is.null(object$raw)) {
    lgb.make_serializable(object)
68
  }
69

70
71
72
73
74
75
76
77
78
79
  saveRDS(
    object
    , file = file
    , ascii = ascii
    , version = version
    , compress = compress
    , refhook = refhook
  )

  return(invisible(NULL))
80
}