lgb.model.dt.tree.Rd 2.06 KB
Newer Older
Guolin Ke's avatar
Guolin Ke committed
1
2
3
4
5
6
7
8
9
10
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/lgb.model.dt.tree.R
\name{lgb.model.dt.tree}
\alias{lgb.model.dt.tree}
\title{Parse a LightGBM model json dump}
\usage{
lgb.model.dt.tree(model, num_iteration = NULL)
}
\arguments{
\item{model}{object of class \code{lgb.Booster}}
James Lamb's avatar
James Lamb committed
11

James Lamb's avatar
James Lamb committed
12
\item{num_iteration}{number of iterations you want to predict with. NULL or
James Lamb's avatar
James Lamb committed
13
<= 0 means use best iteration}
Guolin Ke's avatar
Guolin Ke committed
14
15
16
17
18
19
20
}
\value{
A \code{data.table} with detailed information about model trees' nodes and leafs.

The columns of the \code{data.table} are:

\itemize{
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
 \item{\code{tree_index}: ID of a tree in a model (integer)}
 \item{\code{split_index}: ID of a node in a tree (integer)}
 \item{\code{split_feature}: for a node, it's a feature name (character);
                             for a leaf, it simply labels it as \code{"NA"}}
 \item{\code{node_parent}: ID of the parent node for current node (integer)}
 \item{\code{leaf_index}: ID of a leaf in a tree (integer)}
 \item{\code{leaf_parent}: ID of the parent node for current leaf (integer)}
 \item{\code{split_gain}: Split gain of a node}
 \item{\code{threshold}: Splitting threshold value of a node}
 \item{\code{decision_type}: Decision type of a node}
 \item{\code{default_left}: Determine how to handle NA value, TRUE -> Left, FALSE -> Right}
 \item{\code{internal_value}: Node value}
 \item{\code{internal_count}: The number of observation collected by a node}
 \item{\code{leaf_value}: Leaf value}
 \item{\code{leaf_count}: The number of observation collected by a leaf}
Guolin Ke's avatar
Guolin Ke committed
36
37
38
39
40
41
}
}
\description{
Parse a LightGBM model json dump into a \code{data.table} structure.
}
\examples{
42
\donttest{
43
44
\dontshow{setLGBMthreads(2L)}
\dontshow{data.table::setDTthreads(1L)}
Guolin Ke's avatar
Guolin Ke committed
45
46
47
48
data(agaricus.train, package = "lightgbm")
train <- agaricus.train
dtrain <- lgb.Dataset(train$data, label = train$label)

49
50
51
params <- list(
  objective = "binary"
  , learning_rate = 0.01
52
53
54
55
  , num_leaves = 63L
  , max_depth = -1L
  , min_data_in_leaf = 1L
  , min_sum_hessian_in_leaf = 1.0
56
  , num_threads = 2L
57
)
58
model <- lgb.train(params, dtrain, 10L)
Guolin Ke's avatar
Guolin Ke committed
59
60

tree_dt <- lgb.model.dt.tree(model)
61
}
Guolin Ke's avatar
Guolin Ke committed
62
}