predict.lgb.Booster.Rd 2.4 KB
Newer Older
Guolin Ke's avatar
Guolin Ke committed
1
2
3
4
5
6
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/lgb.Booster.R
\name{predict.lgb.Booster}
\alias{predict.lgb.Booster}
\title{Predict method for LightGBM model}
\usage{
7
8
9
10
11
12
13
14
15
16
17
\method{predict}{lgb.Booster}(
  object,
  data,
  num_iteration = NULL,
  rawscore = FALSE,
  predleaf = FALSE,
  predcontrib = FALSE,
  header = FALSE,
  reshape = FALSE,
  ...
)
Guolin Ke's avatar
Guolin Ke committed
18
19
20
21
22
23
24
25
26
}
\arguments{
\item{object}{Object of class \code{lgb.Booster}}

\item{data}{a \code{matrix} object, a \code{dgCMatrix} object or a character representing a filename}

\item{num_iteration}{number of iteration want to predict with, NULL or <= 0 means use best iteration}

\item{rawscore}{whether the prediction should be returned in the for of original untransformed
27
28
sum of predictions from boosting iterations' results. E.g., setting \code{rawscore=TRUE}
for logistic regression would result in predictions for log-odds instead of probabilities.}
Guolin Ke's avatar
Guolin Ke committed
29
30
31

\item{predleaf}{whether predict leaf index instead.}

James Lamb's avatar
James Lamb committed
32
33
\item{predcontrib}{return per-feature contributions for each record.}

Guolin Ke's avatar
Guolin Ke committed
34
35
36
37
\item{header}{only used for prediction for text file. True if text file has header}

\item{reshape}{whether to reshape the vector of predictions to a matrix form when there are several
prediction outputs per case.}
James Lamb's avatar
James Lamb committed
38
39
40

\item{...}{Additional named arguments passed to the \code{predict()} method of
the \code{lgb.Booster} object passed to \code{object}.}
Guolin Ke's avatar
Guolin Ke committed
41
42
43
}
\value{
For regression or binary classification, it returns a vector of length \code{nrows(data)}.
44
45
46
        For multiclass classification, either a \code{num_class * nrows(data)} vector or
        a \code{(nrows(data), num_class)} dimension matrix is returned, depending on
        the \code{reshape} value.
Guolin Ke's avatar
Guolin Ke committed
47

48
49
        When \code{predleaf = TRUE}, the output is a matrix object with the
        number of columns corresponding to the number of trees.
Guolin Ke's avatar
Guolin Ke committed
50
51
52
53
54
}
\description{
Predicted values based on class \code{lgb.Booster}
}
\examples{
55
\dontrun{
Guolin Ke's avatar
Guolin Ke committed
56
57
58
59
60
61
62
63
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")
valids <- list(test = dtest)
64
65
66
model <- lgb.train(
  params = params
  , data = dtrain
67
  , nrounds = 5L
68
  , valids = valids
69
70
  , min_data = 1L
  , learning_rate = 1.0
71
)
Guolin Ke's avatar
Guolin Ke committed
72
73
preds <- predict(model, test$data)
}
74
}