Learn R Programming

lightgbm (version 4.2.0)

readRDS.lgb.Booster: readRDS for lgb.Booster models (DEPRECATED)

Description

Calls readRDS in what is expected to be a serialized lgb.Booster object, and then restores its handle through lgb.restore_handle.

This function throws a warning and will be removed in future versions.

Usage

readRDS.lgb.Booster(file, refhook = NULL)

Value

lgb.Booster

Arguments

file

a connection or the name of the file where the R object is saved to or read from.

refhook

a hook function for handling reference objects.

Examples

Run this code
# \donttest{
library(lightgbm)
setLGBMthreads(2L)
data.table::setDTthreads(1L)
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)
params <- list(
  objective = "regression"
  , metric = "l2"
  , min_data = 1L
  , learning_rate = 1.0
  , num_threads = 2L
)
valids <- list(test = dtest)
model <- lgb.train(
  params = params
  , data = dtrain
  , nrounds = 10L
  , valids = valids
  , early_stopping_rounds = 5L
)
model_file <- tempfile(fileext = ".rds")
saveRDS.lgb.Booster(model, model_file)
new_model <- readRDS.lgb.Booster(model_file)
# }

Run the code above in your browser using DataLab