DESCRIPTION 1.75 KB
Newer Older
Guolin Ke's avatar
Guolin Ke committed
1
2
3
Package: lightgbm
Type: Package
Title: Light Gradient Boosting Machine
Guolin Ke's avatar
Guolin Ke committed
4
5
Version: 3.0.0-1
Date: 2020-08-06
Laurae's avatar
Laurae committed
6
Authors@R: c(
7
8
9
10
11
    person("Guolin", "Ke", email = "guolin.ke@microsoft.com", role = c("aut", "cre")),
    person("Damien", "Soukhavong", email = "damien.soukhavong@skema.edu", role = c("ctb")),
    person("Yachen", "Yan", role = c("ctb")),
    person("James", "Lamb", email="jaylamb20@gmail.com", role = c("ctb"))
    )
12
Description: Tree based algorithms can be improved by introducing boosting frameworks. 'LightGBM' is one such framework, and this package offers an R interface to work with it.
Guolin Ke's avatar
Guolin Ke committed
13
    It is designed to be distributed and efficient with the following advantages:
Laurae's avatar
Laurae committed
14
15
16
17
18
        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.
19
20
    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.
21
Encoding: UTF-8
Laurae's avatar
Laurae committed
22
License: MIT + file LICENSE
Guolin Ke's avatar
Guolin Ke committed
23
24
URL: https://github.com/Microsoft/LightGBM
BugReports: https://github.com/Microsoft/LightGBM/issues
25
NeedsCompilation: yes
26
Biarch: true
Guolin Ke's avatar
Guolin Ke committed
27
Suggests:
28
    processx,
29
    testthat
Guolin Ke's avatar
Guolin Ke committed
30
Depends:
31
    R (>= 3.5),
32
    R6 (>= 2.0)
Guolin Ke's avatar
Guolin Ke committed
33
Imports:
34
    data.table (>= 1.9.6),
James Lamb's avatar
James Lamb committed
35
36
37
    graphics,
    jsonlite (>= 1.0),
    Matrix (>= 1.1-0),
38
39
    methods,
    utils
40
41
SystemRequirements:
    C++11
42
RoxygenNote: 7.1.1