Parallel-Learning-Guide.rst 4.34 KB
Newer Older
1
2
3
4
5
Parallel Learning Guide
=======================

This is a guide for parallel learning of LightGBM.

6
Follow the `Quick Start <./Quick-Start.rst>`__ to know how to use LightGBM first.
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32

Choose Appropriate Parallel Algorithm
-------------------------------------

LightGBM provides 2 parallel learning algorithms now.

+--------------------------+---------------------------+
| **Parallel Algorithm**   | **How to Use**            |
+==========================+===========================+
| Data parallel            | ``tree_learner=data``     |
+--------------------------+---------------------------+
| Feature parallel         | ``tree_learner=feature``  |
+--------------------------+---------------------------+
| Voting parallel          | ``tree_learner=voting``   |
+--------------------------+---------------------------+

These algorithms are suited for different scenarios, which is listed in the following table:

+-------------------------+----------------------+----------------------+
|                         | **#data is small**   | **#data is large**   |
+=========================+======================+======================+
| **#feature is small**   | Feature Parallel     | Data Parallel        |
+-------------------------+----------------------+----------------------+
| **#feature is large**   | Feature Parallel     | Voting Parallel      |
+-------------------------+----------------------+----------------------+

33
More details about these parallel algorithms can be found in `optimization in parallel learning <./Features.rst#optimization-in-parallel-learning>`__.
34
35
36
37
38
39

Build Parallel Version
----------------------

Default build version support parallel learning based on the socket.

40
If you need to build parallel version with MPI support, please refer to `Installation Guide <./Installation-Guide.rst#build-mpi-version>`__.
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66

Preparation
-----------

Socket Version
^^^^^^^^^^^^^^

It needs to collect IP of all machines that want to run parallel learning in and allocate one TCP port (assume 12345 here) for all machines,
and change firewall rules to allow income of this port (12345). Then write these IP and ports in one file (assume ``mlist.txt``), like following:

.. code::

    machine1_ip 12345
    machine2_ip 12345

MPI Version
^^^^^^^^^^^

It needs to collect IP (or hostname) of all machines that want to run parallel learning in.
Then write these IP in one file (assume ``mlist.txt``) like following:

.. code::

    machine1_ip
    machine2_ip

67
**Note**: For Windows users, need to start "smpd" to start MPI service. More details can be found `here`_.
68
69
70
71
72
73
74
75
76

Run Parallel Learning
---------------------

Socket Version
^^^^^^^^^^^^^^

1. Edit following parameters in config file:

77
   ``tree_learner=your_parallel_algorithm``, edit ``your_parallel_algorithm`` (e.g. feature/data) here.
78

79
   ``num_machines=your_num_machines``, edit ``your_num_machines`` (e.g. 4) here.
80

81
   ``machine_list_file=mlist.txt``, ``mlist.txt`` is created in `Preparation section <#preparation>`__.
82

83
   ``local_listen_port=12345``, ``12345`` is allocated in `Preparation section <#preparation>`__.
84
85
86
87
88

2. Copy data file, executable file, config file and ``mlist.txt`` to all machines.

3. Run following command on all machines, you need to change ``your_config_file`` to real config file.

89
   For Windows: ``lightgbm.exe config=your_config_file``
90

91
   For Linux: ``./lightgbm config=your_config_file``
92
93
94
95
96
97

MPI Version
^^^^^^^^^^^

1. Edit following parameters in config file:

98
   ``tree_learner=your_parallel_algorithm``, edit ``your_parallel_algorithm`` (e.g. feature/data) here.
99

100
   ``num_machines=your_num_machines``, edit ``your_num_machines`` (e.g. 4) here.
101

102
103
104
2. Copy data file, executable file, config file and ``mlist.txt`` to all machines.

   **Note**: MPI needs to be run in the **same path on all machines**.
105
106
107

3. Run following command on one machine (not need to run on all machines), need to change ``your_config_file`` to real config file.

108
109
110
   For Windows:
   
   .. code::
111

112
       mpiexec.exe /machinefile mlist.txt lightgbm.exe config=your_config_file
113

114
   For Linux:
115

116
   .. code::
117

118
       mpiexec --machinefile mlist.txt ./lightgbm config=your_config_file
119

120
121
Example
^^^^^^^
122

123
-  `A simple parallel example`_
124
125
126
127

.. _here: https://blogs.technet.microsoft.com/windowshpc/2015/02/02/how-to-compile-and-run-a-simple-ms-mpi-program/

.. _A simple parallel example: https://github.com/Microsoft/lightgbm/tree/master/examples/parallel_learning