getinfo.Rd 1.58 KB
Newer Older
Guolin Ke's avatar
Guolin Ke committed
1
2
3
4
5
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/lgb.Dataset.R
\name{getinfo}
\alias{getinfo}
\alias{getinfo.lgb.Dataset}
Nikita Titov's avatar
Nikita Titov committed
6
\title{Get information of an \code{lgb.Dataset} object}
Guolin Ke's avatar
Guolin Ke committed
7
8
9
10
11
12
13
14
\usage{
getinfo(dataset, ...)

\method{getinfo}{lgb.Dataset}(dataset, name, ...)
}
\arguments{
\item{dataset}{Object of class \code{lgb.Dataset}}

15
\item{...}{other parameters (ignored)}
16
17

\item{name}{the name of the information field to get (see details)}
Guolin Ke's avatar
Guolin Ke committed
18
19
20
21
22
}
\value{
info data
}
\description{
23
Get one attribute of a \code{lgb.Dataset}
Guolin Ke's avatar
Guolin Ke committed
24
25
26
27
28
29
30
}
\details{
The \code{name} field can be one of the following:

\itemize{
    \item \code{label}: label lightgbm learn from ;
    \item \code{weight}: to do a weight rescale ;
31
32
33
34
35
    \item{\code{group}: used for learning-to-rank tasks. An integer vector describing how to
        group rows together as ordered results from the same set of candidate results to be ranked.
        For example, if you have a 100-document dataset with \code{group = c(10, 20, 40, 10, 10, 10)},
        that means that you have 6 groups, where the first 10 records are in the first group,
        records 11-30 are in the second group, etc.}
Nikita Titov's avatar
Nikita Titov committed
36
    \item \code{init_score}: initial score is the base prediction lightgbm will boost from.
Guolin Ke's avatar
Guolin Ke committed
37
38
39
}
}
\examples{
40
\donttest{
Guolin Ke's avatar
Guolin Ke committed
41
42
43
44
45
46
data(agaricus.train, package = "lightgbm")
train <- agaricus.train
dtrain <- lgb.Dataset(train$data, label = train$label)
lgb.Dataset.construct(dtrain)

labels <- lightgbm::getinfo(dtrain, "label")
47
lightgbm::set_field(dtrain, "label", 1 - labels)
Guolin Ke's avatar
Guolin Ke committed
48
49
50

labels2 <- lightgbm::getinfo(dtrain, "label")
stopifnot(all(labels2 == 1 - labels))
51
}
Guolin Ke's avatar
Guolin Ke committed
52
}