Python-Intro.rst 7.16 KB
Newer Older
1
Python-package Introduction
2
3
===========================

Andrew Ziem's avatar
Andrew Ziem committed
4
This document gives a basic walk-through of LightGBM Python-package.
5
6
7

**List of other helpful links**

8
-  `Python Examples <https://github.com/microsoft/LightGBM/tree/master/examples/python-guide>`__
9
10
11
12
13
14
15
16

-  `Python API <./Python-API.rst>`__

-  `Parameters Tuning <./Parameters-Tuning.rst>`__

Install
-------

17
The preferred way to install LightGBM is via pip:
18
19
20

::

21
    pip install lightgbm
22

23
Refer to `Python-package`_ folder for the detailed installation guide.
24
25
26
27
28
29
30
31
32
33

To verify your installation, try to ``import lightgbm`` in Python:

::

    import lightgbm as lgb

Data Interface
--------------

34
The LightGBM Python module can load data from:
35

36
-  LibSVM (zero-based) / TSV / CSV / TXT format file
37

38
-  NumPy 2D array(s), pandas DataFrame, H2O DataTable's Frame, SciPy sparse matrix
39
40
41

-  LightGBM binary file

42
43
-  LightGBM ``Sequence`` object(s)

44
45
The data is stored in a ``Dataset`` object.

46
47
48
49
50
51
Many of the examples in this page use functionality from ``numpy``. To run the examples, be sure to import ``numpy`` in your session.

.. code:: python

    import numpy as np

52
**To load a LibSVM (zero-based) text file or a LightGBM binary file into Dataset:**
53
54
55
56
57
58
59
60
61
62
63
64
65

.. code:: python

    train_data = lgb.Dataset('train.svm.bin')

**To load a numpy array into Dataset:**

.. code:: python

    data = np.random.rand(500, 10)  # 500 entities, each contains 10 features
    label = np.random.randint(2, size=500)  # binary target
    train_data = lgb.Dataset(data, label=label)

66
**To load a scipy.sparse.csr\_matrix array into Dataset:**
67
68
69

.. code:: python

70
    import scipy
71
72
73
    csr = scipy.sparse.csr_matrix((dat, (row, col)))
    train_data = lgb.Dataset(csr)

74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
**Load from Sequence objects:**

We can implement ``Sequence`` interface to read binary files. The following example shows reading HDF5 file with ``h5py``.

.. code:: python

    import h5py

    class HDFSequence(lgb.Sequence):
        def __init__(self, hdf_dataset, batch_size):
            self.data = hdf_dataset
            self.batch_size = batch_size

        def __getitem__(self, idx):
            return self.data[idx]

        def __len__(self):
            return len(self.data)

    f = h5py.File('train.hdf5', 'r')
    train_data = lgb.Dataset(HDFSequence(f['X'], 8192), label=f['Y'][:])

Features of using ``Sequence`` interface:

- Data sampling uses random access, thus does not go through the whole dataset
- Reading data in batch, thus saves memory when constructing ``Dataset`` object
- Supports creating ``Dataset`` from multiple data files

Please refer to ``Sequence`` `API doc <./Python-API.rst#data-structure-api>`__.

`dataset_from_multi_hdf5.py <https://github.com/microsoft/LightGBM/blob/master/examples/python-guide/dataset_from_multi_hdf5.py>`__ is a detailed example.

106
107
108
109
110
111
112
113
114
115
116
**Saving Dataset into a LightGBM binary file will make loading faster:**

.. code:: python

    train_data = lgb.Dataset('train.svm.txt')
    train_data.save_binary('train.bin')

**Create validation data:**

.. code:: python

117
    validation_data = train_data.create_valid('validation.svm')
118
119
120
121
122

or

.. code:: python

123
    validation_data = lgb.Dataset('validation.svm', reference=train_data)
124
125
126
127
128
129
130
131
132
133

In LightGBM, the validation data should be aligned with training data.

**Specific feature names and categorical features:**

.. code:: python

    train_data = lgb.Dataset(data, label=label, feature_name=['c1', 'c2', 'c3'], categorical_feature=['c3'])

LightGBM can use categorical features as input directly.
134
It doesn't need to convert to one-hot encoding, and is much faster than one-hot encoding (about 8x speed-up).
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154

**Note**: You should convert your categorical features to ``int`` type before you construct ``Dataset``.

**Weights can be set when needed:**

.. code:: python

    w = np.random.rand(500, )
    train_data = lgb.Dataset(data, label=label, weight=w)

or

.. code:: python

    train_data = lgb.Dataset(data, label=label)
    w = np.random.rand(500, )
    train_data.set_weight(w)

And you can use ``Dataset.set_init_score()`` to set initial score, and ``Dataset.set_group()`` to set group/query data for ranking tasks.

155
**Memory efficient usage:**
156

Harry Moreno's avatar
Harry Moreno committed
157
158
159
The ``Dataset`` object in LightGBM is very memory-efficient, it only needs to save discrete bins.
However, Numpy/Array/Pandas object is memory expensive.
If you are concerned about your memory consumption, you can save memory by:
160

Harry Moreno's avatar
Harry Moreno committed
161
1. Set ``free_raw_data=True`` (default is ``True``) when constructing the ``Dataset``
162

Harry Moreno's avatar
Harry Moreno committed
163
2. Explicitly set ``raw_data=None`` after the ``Dataset`` has been constructed
164
165
166
167
168
169

3. Call ``gc``

Setting Parameters
------------------

170
LightGBM can use a dictionary to set `Parameters <./Parameters.rst>`__.
171
172
173
174
175
176
For instance:

-  Booster parameters:

   .. code:: python

177
       param = {'num_leaves': 31, 'objective': 'binary'}
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
       param['metric'] = 'auc'

-  You can also specify multiple eval metrics:

   .. code:: python

       param['metric'] = ['auc', 'binary_logloss']

Training
--------

Training a model requires a parameter list and data set:

.. code:: python

    num_round = 10
194
    bst = lgb.train(param, train_data, num_round, valid_sets=[validation_data])
195
196
197
198
199
200
201
202
203
204
205
206
207

After training, the model can be saved:

.. code:: python

    bst.save_model('model.txt')

The trained model can also be dumped to JSON format:

.. code:: python

    json_model = bst.dump_model()

Nikita Titov's avatar
Nikita Titov committed
208
A saved model can be loaded:
209
210
211

.. code:: python

212
    bst = lgb.Booster(model_file='model.txt')  # init model
213
214
215
216
217
218
219
220
221
222
223
224
225
226

CV
--

Training with 5-fold CV:

.. code:: python

    lgb.cv(param, train_data, num_round, nfold=5)

Early Stopping
--------------

If you have a validation set, you can use early stopping to find the optimal number of boosting rounds.
227
Early stopping requires at least one set in ``valid_sets``. If there is more than one, it will use all of them except the training data:
228
229
230

.. code:: python

231
    bst = lgb.train(param, train_data, num_round, valid_sets=valid_sets, early_stopping_rounds=5)
232
233
234
    bst.save_model('model.txt', num_iteration=bst.best_iteration)

The model will train until the validation score stops improving.
235
Validation score needs to improve at least every ``early_stopping_rounds`` to continue training.
236

237
The index of iteration that has the best performance will be saved in the ``best_iteration`` field if early stopping logic is enabled by setting ``early_stopping_rounds``.
238
Note that ``train()`` will return a model from the best iteration.
239

240
241
This works with both metrics to minimize (L2, log loss, etc.) and to maximize (NDCG, AUC, etc.).
Note that if you specify more than one evaluation metric, all of them will be used for early stopping.
242
However, you can change this behavior and make LightGBM check only the first metric for early stopping by passing ``first_metric_only=True`` in ``param`` or ``early_stopping`` callback constructor.
243
244
245
246

Prediction
----------

247
A model that has been trained or loaded can perform predictions on datasets:
248
249
250
251
252
253
254
255
256
257
258
259
260

.. code:: python

    # 7 entities, each contains 10 features
    data = np.random.rand(7, 10)
    ypred = bst.predict(data)

If early stopping is enabled during training, you can get predictions from the best iteration with ``bst.best_iteration``:

.. code:: python

    ypred = bst.predict(data, num_iteration=bst.best_iteration)

261
.. _Python-package: https://github.com/microsoft/LightGBM/tree/master/python-package