Parallel-Learning-Guide.rst 4.29 KB
Newer Older
1
2
3
4
5
6
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
33
34
35
36
37
38
39
40
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
67
68
69
70
71
72
73
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
Parallel Learning Guide
=======================

This is a guide for parallel learning of LightGBM.

Follow the `Quick Start`_ to know how to use LightGBM first.

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      |
+-------------------------+----------------------+----------------------+

More details about these parallel algorithms can be found in `optimization in parallel learning`_.

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

Default build version support parallel learning based on the socket.

If you need to build parallel version with MPI support, please refer to `Installation Guide`_.

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

Note: For Windows users, need to start "smpd" to start MPI service. More details can be found `here`_.

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

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

1. Edit following parameters in config file:

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

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

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

``local_listen_port=12345``, ``12345`` is allocated in `Preparation section <#preparation>`__.

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.

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

For Linux: ``./lightgbm config=your_config_file``

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

1. Edit following parameters in config file:

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

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

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**.

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

For Windows: ``mpiexec.exe /machinefile mlist.txt lightgbm.exe config=your_config_file``

For Linux: ``mpiexec --machinefile mlist.txt ./lightgbm config=your_config_file``

Example
^^^^^^^

-  `A simple parallel example`_.

.. _Quick Start: ./Quick-Start.md

.. _optimization in parallel learning: ./Features.md

.. _Installation Guide: ./Installation-Guide.rst

.. _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