* [R] better argument check in xgb.DMatrix; fixes #1480 * [R] showsd was a dummy; fixes #2044 * [R] better categorical encoding explanation in vignette; fixes #1989 * [R] new roxygen version docs update
38 lines
1.7 KiB
R
38 lines
1.7 KiB
R
% Generated by roxygen2: do not edit by hand
|
|
% Please edit documentation in R/callbacks.R
|
|
\name{callbacks}
|
|
\alias{callbacks}
|
|
\title{Callback closures for booster training.}
|
|
\description{
|
|
These are used to perform various service tasks either during boosting iterations or at the end.
|
|
This approach helps to modularize many of such tasks without bloating the main training methods,
|
|
and it offers .
|
|
}
|
|
\details{
|
|
By default, a callback function is run after each boosting iteration.
|
|
An R-attribute \code{is_pre_iteration} could be set for a callback to define a pre-iteration function.
|
|
|
|
When a callback function has \code{finalize} parameter, its finalizer part will also be run after
|
|
the boosting is completed.
|
|
|
|
WARNING: side-effects!!! Be aware that these callback functions access and modify things in
|
|
the environment from which they are called from, which is a fairly uncommon thing to do in R.
|
|
|
|
To write a custom callback closure, make sure you first understand the main concepts about R envoronments.
|
|
Check either R documentation on \code{\link[base]{environment}} or the
|
|
\href{http://adv-r.had.co.nz/Environments.html}{Environments chapter} from the "Advanced R"
|
|
book by Hadley Wickham. Further, the best option is to read the code of some of the existing callbacks -
|
|
choose ones that do something similar to what you want to achieve. Also, you would need to get familiar
|
|
with the objects available inside of the \code{xgb.train} and \code{xgb.cv} internal environments.
|
|
}
|
|
\seealso{
|
|
\code{\link{cb.print.evaluation}},
|
|
\code{\link{cb.evaluation.log}},
|
|
\code{\link{cb.reset.parameters}},
|
|
\code{\link{cb.early.stop}},
|
|
\code{\link{cb.save.model}},
|
|
\code{\link{cb.cv.predict}},
|
|
\code{\link{xgb.train}},
|
|
\code{\link{xgb.cv}}
|
|
}
|