DESCRIPTION 2.68 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("Guolin", "Ke", email = "guolin.ke@microsoft.com", role = c("aut", "cre")),
8
    person("Damien", "Soukhavong", email = "damien.soukhavong@skema.edu", role = c("aut")),
9
    person("James", "Lamb", email="jaylamb20@gmail.com", role = c("aut")),
10
11
12
13
14
15
16
    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")),
17
    person("Nikita", "Titov", role = c("aut")),
18
19
20
21
22
23
    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")),
24
25
26
    person("Alberto", "Ferreira", role = c("ctb")),
    person("Daniel", "Lemire", role = c("ctb")),
    person("Victor", "Zverovich", role = c("cph")),
27
    person("IBM Corporation", role = c("ctb"))
28
    )
29
30
31
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
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
Guolin Ke's avatar
Guolin Ke committed
46
Suggests:
47
    processx,
48
    testthat
Guolin Ke's avatar
Guolin Ke committed
49
Depends:
50
    R (>= 3.5),
51
    R6 (>= 2.0)
Guolin Ke's avatar
Guolin Ke committed
52
Imports:
53
    data.table (>= 1.9.6),
James Lamb's avatar
James Lamb committed
54
55
56
    graphics,
    jsonlite (>= 1.0),
    Matrix (>= 1.1-0),
57
58
    methods,
    utils
59
60
SystemRequirements:
    C++11
61
RoxygenNote: 7.1.1