speed test for R, and refinement of item list in doc

This commit is contained in:
unknown 2014-08-28 22:00:13 -07:00
parent 2e96bc51f5
commit 6ed5d37771
4 changed files with 40 additions and 24 deletions

View File

@ -3,12 +3,16 @@
#' The training function of xgboost
#'
#' @param params the list of parameters. Commonly used ones are:
#' objective: objective function, common ones are
#' - reg:linear linear regression
#' - binary:logistic logistic regression for classification
#' eta: step size of each boosting step
#' max_depth: maximum depth of the tree
#' nthread: number of thread used in training, if not set, all threads are used
#' \itemize{
#' \item \code{objective} objective function, common ones are
#' \itemize{
#' \item \code{reg:linear} linear regression
#' \item \code{binary:logistic} logistic regression for classification
#' }
#' \item \code{eta} step size of each boosting step
#' \item \code{max_depth} maximum depth of the tree
#' \item \code{nthread} number of thread used in training, if not set, all threads are used
#' }
#'
#' See \url{https://github.com/tqchen/xgboost/wiki/Parameters} for
#' further details. See also demo/demo.R for walkthrough example in R.

View File

@ -7,12 +7,16 @@
#' @param label the response variable. User should not set this field,
# if data is local data file or \code{xgb.DMatrix}.
#' @param params the list of parameters. Commonly used ones are:
#' objective: objective function, common ones are
#' - reg:linear linear regression
#' - binary:logistic logistic regression for classification
#' eta: step size of each boosting step
#' max_depth: maximum depth of the tree
#' nthread: number of thread used in training, if not set, all threads are used
#' \itemize{
#' \item \code{objective} objective function, common ones are
#' \itemize{
#' \item \code{reg:linear} linear regression
#' \item \code{binary:logistic} logistic regression for classification
#' }
#' \item \code{eta} step size of each boosting step
#' \item \code{max_depth} maximum depth of the tree
#' \item \code{nthread} number of thread used in training, if not set, all threads are used
#' }
#'
#' See \url{https://github.com/tqchen/xgboost/wiki/Parameters} for
#' further details. See also demo/demo.R for walkthrough example in R.

View File

@ -8,12 +8,16 @@ xgb.train(params = list(), dtrain, nrounds, watchlist = list(),
}
\arguments{
\item{params}{the list of parameters. Commonly used ones are:
objective: objective function, common ones are
- reg:linear linear regression
- binary:logistic logistic regression for classification
eta: step size of each boosting step
max_depth: maximum depth of the tree
nthread: number of thread used in training, if not set, all threads are used
\itemize{
\item \code{objective} objective function, common ones are
\itemize{
\item \code{reg:linear} linear regression
\item \code{binary:logistic} logistic regression for classification
}
\item \code{eta} step size of each boosting step
\item \code{max_depth} maximum depth of the tree
\item \code{nthread} number of thread used in training, if not set, all threads are used
}
See \url{https://github.com/tqchen/xgboost/wiki/Parameters} for
further details. See also demo/demo.R for walkthrough example in R.}

View File

@ -13,12 +13,16 @@ xgboost(data = NULL, label = NULL, params = list(), nrounds,
\item{label}{the response variable. User should not set this field,}
\item{params}{the list of parameters. Commonly used ones are:
objective: objective function, common ones are
- reg:linear linear regression
- binary:logistic logistic regression for classification
eta: step size of each boosting step
max_depth: maximum depth of the tree
nthread: number of thread used in training, if not set, all threads are used
\itemize{
\item \code{objective} objective function, common ones are
\itemize{
\item \code{reg:linear} linear regression
\item \code{binary:logistic} logistic regression for classification
}
\item \code{eta} step size of each boosting step
\item \code{max_depth} maximum depth of the tree
\item \code{nthread} number of thread used in training, if not set, all threads are used
}
See \url{https://github.com/tqchen/xgboost/wiki/Parameters} for
further details. See also demo/demo.R for walkthrough example in R.}