_pkgdown.yml 2.4 KB
Newer Older
1
2
3
4
5
6
7
8
template:
  params:
    bootswatch: cerulean

site:
  root: ''
  title: LightGBM, Light Gradient Boosting Machine

9
10
11
development:
  mode: unreleased

12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
authors:
  Guolin Ke:
    href: https://github.com/guolinke
    html: <img src="https://avatars0.githubusercontent.com/u/16040950?s=400&v=4" height="48" /> Guolin Ke
  Damien Soukhavong:
    href: https://github.com/Laurae2
    html: <img src="https://avatars1.githubusercontent.com/u/9083669?s=460&v=4" height="48" /> Damien Soukhavong
  Yachen Yan:
    href: https://github.com/yanyachen
    html: <img src="https://avatars1.githubusercontent.com/u/6893682?s=460&v=4" height="48" /> Yachen Yan
  James Lamb:
    href: https://github.com/jameslamb
    html: <img src="https://avatars1.githubusercontent.com/u/7608904?s=400&v=4" height="48" /> James Lamb

navbar:
  title: LightGBM
  type: default
  left:
  - icon: fa-reply fa-lg
    href: ../
  - icon: fa-home fa-lg
    href: index.html
  - text: Reference
    href: reference/index.html
  right:
  - icon: fa-github fa-lg
    href: https://github.com/microsoft/LightGBM/tree/master/R-package

reference:
  - title: Datasets
    desc: Datasets included with the R package
    contents:
    - '`agaricus.train`'
    - '`agaricus.test`'
    - '`bank`'
  - title: Data Input / Output
    desc: Data I/O required for LightGBM
    contents:
    - '`dim.lgb.Dataset`'
    - '`dimnames.lgb.Dataset`'
    - '`getinfo`'
    - '`setinfo`'
    - '`slice`'
    - '`lgb.Dataset`'
    - '`lgb.Dataset.construct`'
    - '`lgb.Dataset.create.valid`'
    - '`lgb.Dataset.save`'
    - '`lgb.Dataset.set.categorical`'
    - '`lgb.Dataset.set.reference`'
  - title: Machine Learning
    desc: Train models with LightGBM
    contents:
    - '`lgb.prepare`'
    - '`lgb.prepare2`'
    - '`lgb.prepare_rules`'
    - '`lgb.prepare_rules2`'
    - '`lgb.train`'
    - '`lgb.cv`'
  - title: Saving / Loading Models
    desc: Save and load LightGBM models
    contents:
    - '`lgb.dump`'
    - '`lgb.save`'
    - '`lgb.load`'
    - '`lgb.model.dt.tree`'
    - '`predict.lgb.Booster`'
    - '`saveRDS.lgb.Booster`'
    - '`readRDS.lgb.Booster`'
  - title: Predictive Analysis
    desc: Analyze your predictions
    contents:
    - '`lgb.get.eval.result`'
    - '`lgb.importance`'
    - '`lgb.interprete`'
    - '`lgb.plot.importance`'
    - '`lgb.plot.interpretation`'
  - title: Miscellaneous
    desc: Ungroupable functions to troubleshoot LightGBM
    contents:
    - '`lgb.unloader`'