DESCRIPTION 2.85 KB
Newer Older
Guolin Ke's avatar
Guolin Ke committed
1
2
3
Package: lightgbm
Type: Package
Title: Light Gradient Boosting Machine
4
5
Version: ~~VERSION~~
Date: ~~DATE~~
Laurae's avatar
Laurae committed
6
Authors@R: c(
7
8
    person("Yu", "Shi", email = "yushi2@microsoft.com", role = c("aut", "cre")),
    person("Guolin", "Ke", email = "guolin.ke@outlook.com", role = c("aut")),
9
    person("Damien", "Soukhavong", email = "damien.soukhavong@skema.edu", role = c("aut")),
10
    person("James", "Lamb", email="jaylamb20@gmail.com", role = c("aut")),
11
12
13
14
15
16
17
    person("Qi", "Meng", role = c("aut")),
    person("Thomas", "Finley", role = c("aut")),
    person("Taifeng", "Wang", role = c("aut")),
    person("Wei", "Chen", role = c("aut")),
    person("Weidong", "Ma", role = c("aut")),
    person("Qiwei", "Ye", role = c("aut")),
    person("Tie-Yan", "Liu", role = c("aut")),
18
    person("Nikita", "Titov", role = c("aut")),
19
20
21
22
23
24
    person("Yachen", "Yan", role = c("ctb")),
    person("Microsoft Corporation", role = c("cph")),
    person("Dropbox, Inc.", role = c("cph")),
    person("Jay", "Loden", role = c("cph")),
    person("Dave", "Daeschler", role = c("cph")),
    person("Giampaolo", "Rodola", role = c("cph")),
25
26
27
    person("Alberto", "Ferreira", role = c("ctb")),
    person("Daniel", "Lemire", role = c("ctb")),
    person("Victor", "Zverovich", role = c("cph")),
28
29
    person("IBM Corporation", role = c("ctb")),
    person("David", "Cortes", role = c("ctb"))
30
    )
31
32
33
Description: Tree based algorithms can be improved by introducing boosting frameworks. 
    'LightGBM' is one such framework, based on Ke, Guolin et al. (2017) <https://papers.nips.cc/paper/6907-lightgbm-a-highly-efficient-gradient-boosting-decision>.
    This package offers an R interface to work with it.
Guolin Ke's avatar
Guolin Ke committed
34
    It is designed to be distributed and efficient with the following advantages:
Laurae's avatar
Laurae committed
35
36
37
38
39
        1. Faster training speed and higher efficiency.
        2. Lower memory usage.
        3. Better accuracy.
        4. Parallel learning supported.
        5. Capable of handling large-scale data.
40
41
    In recognition of these advantages, 'LightGBM' has been widely-used in many winning solutions of machine learning competitions.
    Comparison experiments on public datasets suggest that 'LightGBM' can outperform existing boosting frameworks on both efficiency and accuracy, with significantly lower memory consumption. In addition, parallel experiments suggest that in certain circumstances, 'LightGBM' can achieve a linear speed-up in training time by using multiple machines.
42
Encoding: UTF-8
Laurae's avatar
Laurae committed
43
License: MIT + file LICENSE
Guolin Ke's avatar
Guolin Ke committed
44
45
URL: https://github.com/Microsoft/LightGBM
BugReports: https://github.com/Microsoft/LightGBM/issues
46
NeedsCompilation: yes
47
Biarch: true
48
VignetteBuilder: knitr
Guolin Ke's avatar
Guolin Ke committed
49
Suggests:
50
    knitr,
51
    processx,
52
    rmarkdown,
53
    testthat
Guolin Ke's avatar
Guolin Ke committed
54
Depends:
55
    R (>= 3.5),
56
    R6 (>= 2.0)
Guolin Ke's avatar
Guolin Ke committed
57
Imports:
58
    data.table (>= 1.9.6),
James Lamb's avatar
James Lamb committed
59
60
61
    graphics,
    jsonlite (>= 1.0),
    Matrix (>= 1.1-0),
62
63
    methods,
    utils
64
65
SystemRequirements:
    C++11
66
RoxygenNote: 7.1.2