README.md 3.99 KB
Newer Older
Guolin Ke's avatar
Guolin Ke committed
1
LightGBM, Light Gradient Boosting Machine
wxchan's avatar
wxchan committed
2
=========================================
Guolin Ke's avatar
Guolin Ke committed
3
[![Build Status](https://travis-ci.org/Microsoft/LightGBM.svg?branch=master)](https://travis-ci.org/Microsoft/LightGBM)
Guolin Ke's avatar
Guolin Ke committed
4

5
LightGBM is a gradient boosting framework that uses tree based learning algorithms. It is designed to be distributed and efficient with the following advantages:
Guolin Ke's avatar
Guolin Ke committed
6

7
- Faster training speed and higher efficiency
xuehui's avatar
xuehui committed
8
- Lower memory usage
Guolin Ke's avatar
Guolin Ke committed
9
- Better accuracy
Guolin Ke's avatar
Guolin Ke committed
10
- Parallel learning supported
11
- Capable of handling large-scale data
Guolin Ke's avatar
Guolin Ke committed
12

xuehui's avatar
xuehui committed
13
For more details, please refer to [Features](https://github.com/Microsoft/LightGBM/wiki/Features).
Guolin Ke's avatar
Guolin Ke committed
14

15
[Experiments](https://github.com/Microsoft/LightGBM/wiki/Experiments#comparison-experiment) on public datasets show that LightGBM can outperform existing boosting frameworks on both efficiency and accuracy, with significantly lower memory consumption. What's more, the [experiments](https://github.com/Microsoft/LightGBM/wiki/Experiments#parallel-experiment) show that LightGBM can achieve a linear speed-up by using multiple machines for training in specific settings.
Guolin Ke's avatar
Guolin Ke committed
16

wxchan's avatar
wxchan committed
17
18
News
----
Guolin Ke's avatar
Guolin Ke committed
19
02/20/2017 : Update to LightGBM v2.
Guolin Ke's avatar
Guolin Ke committed
20

Guolin Ke's avatar
Guolin Ke committed
21
22
01/08/2017 : Release [**R-package**](./R-package) beta version, welcome to have a try and provide feedback.

Guolin Ke's avatar
Guolin Ke committed
23
12/05/2016 : [deprecated in v2]**Categorical Features as input directly**(without one-hot coding). Experiment on [Expo data](http://stat-computing.org/dataexpo/2009/) shows about 8x speed-up with same accuracy compared with one-hot coding (refer to [categorical log]( https://github.com/guolinke/boosting_tree_benchmarks/blob/master/lightgbm/lightgbm_dataexpo_speed.log) and [one-hot log]( https://github.com/guolinke/boosting_tree_benchmarks/blob/master/lightgbm/lightgbm_dataexpo_onehot_speed.log)).
Guolin Ke's avatar
Guolin Ke committed
24
For the setting details, please refer to [IO Parameters](./docs/Parameters.md#io-parameters).
wxchan's avatar
wxchan committed
25

Guolin Ke's avatar
Guolin Ke committed
26
12/02/2016 : Release [**python-package**](./python-package) beta version, welcome to have a try and provide feedback.
wxchan's avatar
wxchan committed
27

Guolin Ke's avatar
Guolin Ke committed
28
29
Get Started And Documents
-------------------------
30
To get started, please follow the [Installation Guide](https://github.com/Microsoft/LightGBM/wiki/Installation-Guide) and [Quick Start](https://github.com/Microsoft/LightGBM/wiki/Quick-Start).
Guolin Ke's avatar
Guolin Ke committed
31

Guolin Ke's avatar
Guolin Ke committed
32
* [**Wiki**](https://github.com/Microsoft/LightGBM/wiki)
33
* [**Installation Guide**](https://github.com/Microsoft/LightGBM/wiki/Installation-Guide)
Guolin Ke's avatar
Guolin Ke committed
34
* [**Quick Start**](https://github.com/Microsoft/LightGBM/wiki/Quick-Start)
Guolin Ke's avatar
Guolin Ke committed
35
* [**Examples**](https://github.com/Microsoft/LightGBM/tree/master/examples)
36
37
38
* [**Features**](https://github.com/Microsoft/LightGBM/wiki/Features)
* [**Parallel Learning Guide**](https://github.com/Microsoft/LightGBM/wiki/Parallel-Learning-Guide)
* [**Configuration**](https://github.com/Microsoft/LightGBM/wiki/Configuration)
Guolin Ke's avatar
Guolin Ke committed
39
* [**Document Indexer**](https://github.com/Microsoft/LightGBM/blob/master/docs/Readme.md)
Guolin Ke's avatar
Guolin Ke committed
40

Guolin Ke's avatar
Guolin Ke committed
41
42
43
44
45
46
How to Contribute
-----------------

LightGBM has been developed and used by many active community members. Your help is very valuable to make it better for everyone.

- Check out [call for contributions](https://github.com/Microsoft/LightGBM/issues?q=is%3Aissue+is%3Aopen+label%3Acall-for-contribution) to see what can be improved, or open an issue if you want something.
Guolin Ke's avatar
Guolin Ke committed
47
- Contribute to the [tests](https://github.com/Microsoft/LightGBM/tree/master/tests) to make it more reliable. 
48
- Contribute to the [documents](https://github.com/Microsoft/LightGBM/tree/master/docs) to make it clearer for everyone.
Guolin Ke's avatar
Guolin Ke committed
49
- Contribute to the [examples](https://github.com/Microsoft/LightGBM/tree/master/examples) to share your experience with other users.
Guolin Ke's avatar
Guolin Ke committed
50
51
- Check out [Development Guide](./docs/development.md).
- Open issue if you met problems during development.
Guolin Ke's avatar
Guolin Ke committed
52

Guolin Ke's avatar
Guolin Ke committed
53
54
55
Microsoft Open Source Code of Conduct
------------
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.