DESCRIPTION 1.63 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: 2.1.0
Date: 2018-01-25
Guolin Ke's avatar
Guolin Ke committed
6
7
Author: Guolin Ke <guolin.ke@microsoft.com>
Maintainer: Guolin Ke <guolin.ke@microsoft.com>
James Lamb's avatar
James Lamb committed
8
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
9
    It is designed to be distributed and efficient with the following advantages:
Laurae's avatar
Laurae committed
10
11
12
13
14
        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.
James Lamb's avatar
James Lamb committed
15
16
    In recognition of these advantages, LightGBM has being 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.
Laurae's avatar
Laurae committed
17
License: MIT + file LICENSE
Guolin Ke's avatar
Guolin Ke committed
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
URL: https://github.com/Microsoft/LightGBM
BugReports: https://github.com/Microsoft/LightGBM/issues
VignetteBuilder: knitr
Suggests:
    knitr,
    rmarkdown,
    ggplot2 (>= 1.0.1),
    DiagrammeR (>= 0.8.1),
    Ckmeans.1d.dp (>= 3.3.1),
    vcd (>= 1.3),
    testthat,
    igraph (>= 1.0.1),
    stringi (>= 0.5.2)
Depends:
    R (>= 3.0),
33
    R6 (>= 2.0)
Guolin Ke's avatar
Guolin Ke committed
34
Imports:
James Lamb's avatar
James Lamb committed
35
    graphics,
36
    methods,
Guolin Ke's avatar
Guolin Ke committed
37
    Matrix (>= 1.1-0),
38
39
    data.table (>= 1.9.6),
    magrittr (>= 1.5),
40
    jsonlite (>= 1.0)
41
RoxygenNote: 6.0.1