DESCRIPTION 2.48 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
17
18
19
20
21
22
    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")),
    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")),
23
    person("IBM Corporation", role = c("ctb"))
24
    )
25
26
27
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
28
    It is designed to be distributed and efficient with the following advantages:
Laurae's avatar
Laurae committed
29
30
31
32
33
        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.
34
35
    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.
36
Encoding: UTF-8
Laurae's avatar
Laurae committed
37
License: MIT + file LICENSE
Guolin Ke's avatar
Guolin Ke committed
38
39
URL: https://github.com/Microsoft/LightGBM
BugReports: https://github.com/Microsoft/LightGBM/issues
40
NeedsCompilation: yes
41
Biarch: true
Guolin Ke's avatar
Guolin Ke committed
42
Suggests:
43
    processx,
44
    testthat
Guolin Ke's avatar
Guolin Ke committed
45
Depends:
46
    R (>= 3.5),
47
    R6 (>= 2.0)
Guolin Ke's avatar
Guolin Ke committed
48
Imports:
49
    data.table (>= 1.9.6),
James Lamb's avatar
James Lamb committed
50
51
52
    graphics,
    jsonlite (>= 1.0),
    Matrix (>= 1.1-0),
53
54
    methods,
    utils
55
56
SystemRequirements:
    C++11
57
RoxygenNote: 7.1.1