87 lines
3.3 KiB
R
87 lines
3.3 KiB
R
#' Dump an xgboost model in text format.
|
|
#'
|
|
#' Dump an xgboost model in text format.
|
|
#'
|
|
#' @param model the model object.
|
|
#' @param fname the name of the text file where to save the model text dump.
|
|
#' If not provided or set to \code{NULL}, the model is returned as a \code{character} vector.
|
|
#' @param fmap feature map file representing feature types.
|
|
#' See demo/ for walkthrough example in R, and
|
|
#' \url{https://github.com/dmlc/xgboost/blob/master/demo/data/featmap.txt}
|
|
#' for example Format.
|
|
#' @param with_stats whether to dump some additional statistics about the splits.
|
|
#' When this option is on, the model dump contains two additional values:
|
|
#' gain is the approximate loss function gain we get in each split;
|
|
#' cover is the sum of second order gradient in each node.
|
|
#' @param dump_format either 'text', 'json', or 'dot' (graphviz) format could be specified.
|
|
#'
|
|
#' Format 'dot' for a single tree can be passed directly to packages that consume this format
|
|
#' for graph visualization, such as function [DiagrammeR::grViz()]
|
|
#' @param ... currently not used
|
|
#'
|
|
#' @return
|
|
#' If fname is not provided or set to \code{NULL} the function will return the model
|
|
#' as a \code{character} vector. Otherwise it will return \code{TRUE}.
|
|
#'
|
|
#' @examples
|
|
#' \dontshow{RhpcBLASctl::omp_set_num_threads(1)}
|
|
#' data(agaricus.train, package='xgboost')
|
|
#' data(agaricus.test, package='xgboost')
|
|
#' train <- agaricus.train
|
|
#' test <- agaricus.test
|
|
#' bst <- xgb.train(data = xgb.DMatrix(train$data, label = train$label), max_depth = 2,
|
|
#' eta = 1, nthread = 2, nrounds = 2, objective = "binary:logistic")
|
|
#' # save the model in file 'xgb.model.dump'
|
|
#' dump_path = file.path(tempdir(), 'model.dump')
|
|
#' xgb.dump(bst, dump_path, with_stats = TRUE)
|
|
#'
|
|
#' # print the model without saving it to a file
|
|
#' print(xgb.dump(bst, with_stats = TRUE))
|
|
#'
|
|
#' # print in JSON format:
|
|
#' cat(xgb.dump(bst, with_stats = TRUE, dump_format='json'))
|
|
#'
|
|
#' # plot first tree leveraging the 'dot' format
|
|
#' if (requireNamespace('DiagrammeR', quietly = TRUE)) {
|
|
#' DiagrammeR::grViz(xgb.dump(bst, dump_format = "dot")[[1L]])
|
|
#' }
|
|
#' @export
|
|
xgb.dump <- function(model, fname = NULL, fmap = "", with_stats = FALSE,
|
|
dump_format = c("text", "json", "dot"), ...) {
|
|
check.deprecation(...)
|
|
dump_format <- match.arg(dump_format)
|
|
if (!inherits(model, "xgb.Booster"))
|
|
stop("model: argument must be of type xgb.Booster")
|
|
if (!(is.null(fname) || is.character(fname)))
|
|
stop("fname: argument must be a character string (when provided)")
|
|
if (!(is.null(fmap) || is.character(fmap)))
|
|
stop("fmap: argument must be a character string (when provided)")
|
|
|
|
model_dump <- .Call(
|
|
XGBoosterDumpModel_R,
|
|
xgb.get.handle(model),
|
|
NVL(fmap, "")[1],
|
|
as.integer(with_stats),
|
|
as.character(dump_format)
|
|
)
|
|
if (dump_format == "dot") {
|
|
return(sapply(model_dump, function(x) gsub("^booster\\[\\d+\\]\\n", "\\1", x)))
|
|
}
|
|
|
|
if (is.null(fname))
|
|
model_dump <- gsub('\t', '', model_dump, fixed = TRUE)
|
|
|
|
if (dump_format == "text")
|
|
model_dump <- unlist(strsplit(model_dump, '\n', fixed = TRUE))
|
|
|
|
model_dump <- grep('^\\s*$', model_dump, invert = TRUE, value = TRUE)
|
|
|
|
if (is.null(fname)) {
|
|
return(model_dump)
|
|
} else {
|
|
fname <- path.expand(fname)
|
|
writeLines(model_dump, fname[1])
|
|
return(TRUE)
|
|
}
|
|
}
|