Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

[MXNET-422] Distributed training tutorial #10955

Merged
merged 20 commits into from
Aug 26, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/tutorials/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ Select API: 
* Practitioner Guides
* [Multi-GPU training](http://gluon.mxnet.io/chapter07_distributed-learning/multiple-gpus-gluon.html) <img src="https://upload.wikimedia.org/wikipedia/commons/6/6a/External_link_font_awesome.svg" alt="External link" height="15px" style="margin: 0px 0px 3px 3px;"/>
* [Checkpointing and Model Serialization (a.k.a. saving and loading)](/tutorials/gluon/save_load_params.html) <img src="https://upload.wikimedia.org/wikipedia/commons/6/6a/External_link_font_awesome.svg" alt="External link" height="15px" style="margin: 0px 0px 3px 3px;"/> ([Alternative](http://gluon.mxnet.io/chapter03_deep-neural-networks/serialization.html))
* [Distributed Training](https://github.com/apache/incubator-mxnet/tree/master/example/distributed_training)
* [Inference using an ONNX model](/tutorials/onnx/inference_on_onnx_model.html)
* [Fine-tuning an ONNX model on Gluon](/tutorials/onnx/fine_tuning_gluon.html)
* [Visualizing Decisions of Convolutional Neural Networks](/tutorials/vision/cnn_visualization.html)
Expand Down
255 changes: 255 additions & 0 deletions example/distributed_training/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,255 @@
# Distributed Training using Gluon
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please move this to docs/tutorials and change this README.md to refer this file instead

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If I move this to docs/tutorials, I can't make it pass the tutorials tests without putting most of the code under "```" instead of "```python". This will remove syntax highlighting and result is bad user experience. If there is a way to whitelist this tutorial from the automated tests, please let me know.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I only see this block not being able to run in a notebook?

+```python
+for batch in train_data:
+    # Train the batch using multiple GPUs
+    train_batch(batch, ctx, net, trainer)
+```

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Few more blocks:

store = mxnet.kv.create('dist’)
won’t work without a bunch of environment variables being defined. launch.py defines these variables.

trainer = gluon.Trainer(net.collect_params(),
won’t work because net is not defined

print("Total number of workers: %d" % store.num_workers)
won’t work because store cannot be created. See above.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I see, I just don't like the idea of pointing to a github readme for a tutorial from a UI and UX perspective and also have no test coverage on it. I'll let others weight on it, but if that's the only solution... I'm just not happy with it, considering what happened with the tutorial on the straight dope etc. I wonder if we could work out a specific test case where we run a distributed training in a bunch of docker containers.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If the concern is about test coverage, can we add distributed_training/cifar10_dist.py to nightly test suite, with some assertion of accuracy on validation set?


Deep learning models are usually trained using GPUs because GPUs can do a lot more computations in parallel that CPUs. But even with the modern GPUs, it could take several days to train big models. Training can be done faster by using multiple GPUs like described in [this](https://gluon.mxnet.io/chapter07_distributed-learning/multiple-gpus-gluon.html) tutorial. However only a certain number of GPUs can be attached to one host (typically 8 or 16). To make the training even faster, we can use multiple GPUs attached to multiple hosts.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

that CPUs -> than CPUs


In this tutorial, we will show how to train a model faster using multi-host distributed training.

![Multiple GPUs connected to multiple hosts](https://raw.githubusercontent.com/dmlc/web-data/master/mxnet/example/distributed_training/distributed_training.png)

We will use data parallelism to distribute the training which involves splitting the training data across GPUs attached to multiple hosts. Since the hosts are working with different subset of the training data in parallel, the training completes a lot faster.

In this tutorial, we will train a ResNet18 network using CIFAR-10 dataset using two hosts each having four GPUs.

## Distributed Training Architecture:

Multihost distributed training involves working with three different types of processes - worker, parameter server and scheduler.

![Distributed training architecture](https://raw.githubusercontent.com/dmlc/web-data/master/mxnet/example/distributed_training/dist_train_arch.png)

### Parameter Server:
The parameters of the model needs to be shared with all hosts since multiple hosts are working together to train one model. To make this sharing efficient, the parameters are split across multiple hosts. A parameter server in each host stores a subset of parameters. In the figure above, parameters are split evenly between the two hosts. At the end of every iteration, each host communicates with every other host to update all parameters of the model.

### Worker:
Each host has a worker process which in each iteration fetches a batch of data, runs forward and backward pass on all GPUs in the host, computes the parameter updates and sends those updates to the parameter servers in each host. Since we have multiple workers to train the model, each worker only needs to process 1/N part of the training data where N is the number of workers.

### Scheduler:
Scheduler is responsible for scheduling the workers and parameter servers. There is only one scheduler in the entire cluster.

## Moving to distributed training:

[cifar10_dist.py](cifar10_dist.py) contains code that trains a ResNet18 network using distributed training. In this section we'll walk through parts of that file that are unique to distributed training.

### Step 1: Use a distributed key-value store:

Like mentioned above, in distributed training, parameters are split into N parts and distributed across N hosts. This is done automatically by the [distributed key-value store](https://mxnet.incubator.apache.org/tutorials/python/kvstore.html). User only needs to create the distributed kv store and ask the `Trainer` to use the created store.

```python
store = mxnet.kv.create('dist')
```

It is the job of the trainer to take the gradients computed in the backward pass and update the parameters of the model. We'll tell the trainer to store and update the parameters in the distributed kv store we just created instead of doing it in GPU of CPU memory. For example,

```python
trainer = gluon.Trainer(net.collect_params(),
'adam', {'learning_rate': .001},
kvstore=store)
```

## Step 2: Split the training data:

In distributed training (using data parallelism), training data is split into equal parts across all workers and each worker uses its subset of the training data for training. For example, if we had two machines, each running a worker, each worker managing four GPUs we'll split the data like shown below. Note that we don't split the data depending on the number of GPUs but split it depending on the number of workers.

![Splitting data](https://raw.githubusercontent.com/dmlc/web-data/master/mxnet/example/distributed_training/split_data.png)

Each worker can find out the total number of workers in the cluster and its own rank which is an integer between 0 and N-1 where N is the number of workers.

```python
store = kv.create('dist')
print("Total number of workers: %d" % store.num_workers)
print("This worker's rank: %d" % store.rank)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it would be nice to have an example of the output of these functions in the .md file as well

```

```
Total number of workers: 2
This worker's rank: 0
```

Knowing the number of workers and a particular worker's rank, it is easy to split the dataset into partitions and pick one partition to train depending on the rank of the worker. Here is a sampler that does exactly that.

```python
class SplitSampler(gluon.data.sampler.Sampler):
""" Split the dataset into `num_parts` parts and sample from the part with index `part_index`
Parameters
----------
length: int
Number of examples in the dataset
num_parts: int
Partition the data into multiple parts
part_index: int
The index of the part to read from
"""
def __init__(self, length, num_parts=1, part_index=0):
# Compute the length of each partition
self.part_len = length // num_parts
# Compute the start index for this partition
self.start = self.part_len * part_index
# Compute the end index for this partition
self.end = self.start + self.part_len

def __iter__(self):
# Extract examples between `start` and `end`, shuffle and return them.
indices = list(range(self.start, self.end))
random.shuffle(indices)
return iter(indices)

def __len__(self):
return self.part_len
```

We can then create a `DataLoader` using the `SplitSampler` like shown below:

```python
# Load the training data
train_data = gluon.data.DataLoader(gluon.data.vision.CIFAR10(train=True, transform=transform),
batch_size,
sampler=SplitSampler(50000, store.num_workers, store.rank))
```

## Step 3: Training with multiple GPUs

Note that we didn't split the dataset by the number of GPUs. We split it by the number of workers which usually translates to number of machines. It is the worker's responsibility to split the partition it has across multiple GPUs it might have and run the training in parallel across multiple GPUs.

To train with multiple GPUs, we first need to specify the list of GPUs we want to use for training:

```python
ctx = [mx.gpu(i) for i in range(gpus_per_machine)]
```

We can then train a batch like shown below:

```python
# Train a batch using multiple GPUs
def train_batch(batch, ctx, net, trainer):

# Split and load data into multiple GPUs
data = batch[0]
data = gluon.utils.split_and_load(data, ctx)

# Split and load label into multiple GPUs
label = batch[1]
label = gluon.utils.split_and_load(label, ctx)

# Run the forward and backward pass
forward_backward(net, data, label)

# Update the parameters
this_batch_size = batch[0].shape[0]
trainer.step(this_batch_size)
```

Here is the code that runs the forward (computing loss) and backward (computing gradients) pass on multiple GPUs:

```python
# We'll use cross entropy loss since we are doing multiclass classification
loss = gluon.loss.SoftmaxCrossEntropyLoss()

# Run one forward and backward pass on multiple GPUs
def forward_backward(net, data, label):

# Ask autograd to remember the forward pass
with autograd.record():
# Compute the loss on all GPUs
losses = [loss(net(X), Y) for X, Y in zip(data, label)]

# Run the backward pass (calculate gradients) on all GPUs
for l in losses:
l.backward()
```

Given `train_batch`, training an epoch is simple:

```python
for batch in train_data:
# Train the batch using multiple GPUs
train_batch(batch, ctx, net, trainer)
```

## Final Step: Launching the distributed training

Note that there are several processes that needs to be launched on multiple machines to do distributed training. One worker and one parameter server needs to be launched on each host. Scheduler needs to be launched on one of the hosts. While this can be done manually, MXNet provides the [`launch.py`](https://github.com/apache/incubator-mxnet/blob/master/tools/launch.py) tool to make this easy.

For example, the following command launches distributed training on two machines:

```
python ~/mxnet/tools/launch.py -n 2 -s 2 -H hosts \
--sync-dst-dir /home/ubuntu/cifar10_dist \
--launcher ssh \
"python /home/ubuntu/cifar10_dist/cifar10_dist.py"
```

- `-n 2` specifies the number of workers that must be launched
- `-s 2` specifies the number of parameter servers that must be launched.
- `--sync-dst-dir` specifies a destination location where the contents of the current directory will be rsync'd
- `--launcher ssh` tells `launch.py` to use ssh to login on each machine in the cluster and launch processes.
- `"python /home/ubuntu/dist/dist.py"` is the command that will get executed in each of the launched processes.
- Finally, `-H hosts` specifies the list of hosts in the cluster to be used for distributed training.

Let's take a look at the `hosts` file.

```
~/dist$ cat hosts
d1
d2
```

'd1' and 'd2' are the hostnames of the hosts we want to run distributed training using. `launch.py` should be able to ssh into these hosts by providing just the hostname on the command line. For example:

```
~/dist$ ssh d1
Welcome to Ubuntu 16.04.3 LTS (GNU/Linux 4.4.0-1049-aws x86_64)

* Documentation: https://help.ubuntu.com
* Management: https://landscape.canonical.com
* Support: https://ubuntu.com/advantage

Get cloud support with Ubuntu Advantage Cloud Guest:
http://www.ubuntu.com/business/services/cloud

0 packages can be updated.
0 updates are security updates.


Last login: Wed Jan 31 18:06:45 2018 from 72.21.198.67
```

Note that no authentication information was provided to login to the host. This can be done using multiple methods. One easy way is to specify the ssh certificates in `~/.ssh/config`. Example:

```
~$ cat ~/.ssh/config
Host d1
HostName ec2-34-201-108-233.compute-1.amazonaws.com
port 22
user ubuntu
IdentityFile /home/ubuntu/my_key.pem
IdentitiesOnly yes

Host d2
HostName ec2-34-238-232-97.compute-1.amazonaws.com
port 22
user ubuntu
IdentityFile /home/ubuntu/my_key.pem
IdentitiesOnly yes
```

A better way is to use ssh agent forwarding. Check [this](https://aws.amazon.com/blogs/security/securely-connect-to-linux-instances-running-in-a-private-amazon-vpc/) article for more details.

Here is a sample output from running distributed training:

```
$ python ~/mxnet/tools/launch.py -n 2 -s 2 -H hosts --sync-dst-dir /home/ubuntu/cifar10_dist --launcher ssh "python /home/ubuntu/cifar10_dist/cifar10_dist.py"
2018-06-03 05:30:05,609 INFO rsync /home/ubuntu/cifar10_dist/ -> a1:/home/ubuntu/cifar10_dist
2018-06-03 05:30:05,879 INFO rsync /home/ubuntu/cifar10_dist/ -> a2:/home/ubuntu/cifar10_dist
Epoch 0: Test_acc 0.467400
Epoch 0: Test_acc 0.466800
Epoch 1: Test_acc 0.568500
Epoch 1: Test_acc 0.571300
Epoch 2: Test_acc 0.586300
Epoch 2: Test_acc 0.594000
Epoch 3: Test_acc 0.659200
Epoch 3: Test_acc 0.653300
Epoch 4: Test_acc 0.681200
Epoch 4: Test_acc 0.687900
```

Note that the output from all hosts are merged and printed to the console.

Loading