| xgb.save.raw | R Documentation |
Save XGBoost model from xgboost() or xgb.train().
Call xgb.load.raw() to load the model back from raw vector.
xgb.save.raw(model, raw_format = "ubj")
model |
The model object. |
raw_format |
The format for encoding the booster:
|
data(agaricus.train, package = "xgboost")
data(agaricus.test, package = "xgboost")
## Keep the number of threads to 1 for examples
nthread <- 1
data.table::setDTthreads(nthread)
train <- agaricus.train
test <- agaricus.test
bst <- xgb.train(
data = xgb.DMatrix(train$data, label = train$label, nthread = 1),
nrounds = 2,
params = xgb.params(
max_depth = 2,
nthread = nthread,
objective = "binary:logistic"
)
)
raw <- xgb.save.raw(bst)
bst <- xgb.load.raw(raw)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.