_pkgdown.yml 3.07 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
12
13
14
15
repo:
  url:
    home: https://github.com/microsoft/LightGBM/
    source: https://github.com/microsoft/LightGBM/tree/master/R-package/
    issue: https://github.com/microsoft/LightGBM/issues/
    user: https://github.com/

16
development:
James Lamb's avatar
James Lamb committed
17
  mode: release
18

19
authors:
20
21
22
  Yu Shi:
    href: https://github.com/shiyu1994
    html: <img src="https://avatars.githubusercontent.com/u/14541765?s=400&v=4" height="48" /> Yu Shi
23
24
  Guolin Ke:
    href: https://github.com/guolinke
25
    html: <img src="https://avatars.githubusercontent.com/u/16040950?s=400&v=4" height="48" /> Guolin Ke
26
27
  Damien Soukhavong:
    href: https://github.com/Laurae2
28
    html: <img src="https://avatars.githubusercontent.com/u/9083669?s=400&v=4" height="48" /> Damien Soukhavong
29
30
  Yachen Yan:
    href: https://github.com/yanyachen
31
    html: <img src="https://avatars.githubusercontent.com/u/6893682?s=400&v=4" height="48" /> Yachen Yan
32
33
  James Lamb:
    href: https://github.com/jameslamb
34
    html: <img src="https://avatars.githubusercontent.com/u/7608904?s=400&v=4" height="48" /> James Lamb
35
36
37
38
39

navbar:
  title: LightGBM
  type: default
  left:
40
41
42
43
44
45
46
47
    - icon: fa-reply fa-lg
      href: ../
    - icon: fa-home fa-lg
      href: index.html
    - text: Articles
      href: articles/index.html
    - text: Reference
      href: reference/index.html
48
  right:
49
50
    - icon: fa-github fa-lg
      href: https://github.com/microsoft/LightGBM/tree/master/R-package
51
52
53

reference:
  - title: Datasets
54
    desc: Datasets included with the R-package
55
    contents:
56
57
58
      - '`agaricus.train`'
      - '`agaricus.test`'
      - '`bank`'
59
60
61
  - title: Data Input / Output
    desc: Data I/O required for LightGBM
    contents:
62
63
64
65
66
67
68
69
70
71
72
73
      - '`dim.lgb.Dataset`'
      - '`dimnames.lgb.Dataset`'
      - '`get_field`'
      - '`set_field`'
      - '`lgb.Dataset`'
      - '`lgb.Dataset.construct`'
      - '`lgb.Dataset.create.valid`'
      - '`lgb.Dataset.save`'
      - '`lgb.Dataset.set.categorical`'
      - '`lgb.Dataset.set.reference`'
      - '`lgb.convert_with_rules`'
      - '`lgb.slice.Dataset`'
74
  - title: Machine Learning
75
    desc: Train models with LightGBM and then use them to make predictions on new data
76
    contents:
77
78
79
80
81
      - '`lightgbm`'
      - '`lgb.train`'
      - '`predict.lgb.Booster`'
      - '`lgb.cv`'
      - '`lgb.configure_fast_predict`'
82
83
84
  - title: Saving / Loading Models
    desc: Save and load LightGBM models
    contents:
85
86
87
88
89
90
91
      - '`lgb.dump`'
      - '`lgb.save`'
      - '`lgb.load`'
      - '`lgb.model.dt.tree`'
      - '`lgb.drop_serialized`'
      - '`lgb.make_serializable`'
      - '`lgb.restore_handle`'
92
93
  - title: Model Interpretation
    desc: Analyze your models
94
    contents:
95
96
97
98
99
100
101
      - '`lgb.get.eval.result`'
      - '`lgb.importance`'
      - '`lgb.interprete`'
      - '`lgb.plot.importance`'
      - '`lgb.plot.interpretation`'
      - '`print.lgb.Booster`'
      - '`summary.lgb.Booster`'
102
103
104
  - title: Multithreading Control
    desc: Manage degree of parallelism used by LightGBM
    contents:
105
106
      - '`getLGBMThreads`'
      - '`setLGBMThreads`'