DESCRIPTION 2.78 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
    person("Yu", "Shi", email = "yushi2@microsoft.com", role = c("aut")),
8
    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", "cre")),
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
    person("Yachen", "Yan", role = c("ctb")),
    person("Microsoft Corporation", role = c("cph")),
    person("Dropbox, Inc.", role = c("cph")),
22
23
24
    person("Alberto", "Ferreira", role = c("ctb")),
    person("Daniel", "Lemire", role = c("ctb")),
    person("Victor", "Zverovich", role = c("cph")),
25
    person("IBM Corporation", role = c("ctb")),
26
    person("David", "Cortes", role = c("aut")),
27
    person("Michael", "Mayer", role = c("ctb"))
28
    )
29
Description: Tree based algorithms can be improved by introducing boosting frameworks.
30
31
    '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
32
    It is designed to be distributed and efficient with the following advantages:
Laurae's avatar
Laurae committed
33
34
35
36
37
        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.
38
39
    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.
40
Encoding: UTF-8
Laurae's avatar
Laurae committed
41
License: MIT + file LICENSE
Guolin Ke's avatar
Guolin Ke committed
42
43
URL: https://github.com/Microsoft/LightGBM
BugReports: https://github.com/Microsoft/LightGBM/issues
44
NeedsCompilation: yes
45
Biarch: true
46
VignetteBuilder: knitr
Guolin Ke's avatar
Guolin Ke committed
47
Suggests:
48
    knitr,
49
    markdown,
50
    processx,
51
    RhpcBLASctl,
52
    testthat
Guolin Ke's avatar
Guolin Ke committed
53
Depends:
54
    R (>= 3.5)
Guolin Ke's avatar
Guolin Ke committed
55
Imports:
56
    R6 (>= 2.0),
57
    data.table (>= 1.9.6),
James Lamb's avatar
James Lamb committed
58
59
60
    graphics,
    jsonlite (>= 1.0),
    Matrix (>= 1.1-0),
61
    methods,
62
    parallel,
63
    utils
64
SystemRequirements:
65
    ~~CXXSTD~~
66
RoxygenNote: 7.3.1