https://github.com/Microsoft/CNTK
Raw File
Tip revision: 13c4e0e044aff91f5be31c204d367c05d952c880 authored by Qiwei Ye on 05 June 2017, 11:16:14 UTC
Merge branch 'master' into qiwye/asgd-dev
Tip revision: 13c4e0e
README.md
# CNTK Examples: Image/Classification/VGG

## Python

### VGG16_ImageNet_Distributed.py

This is the VGG model that contains 16 layers, which was referred as `ConvNet configuration D` in the [original paper](https://arxiv.org/pdf/1409.1556v6.pdf).

Run the example from the current folder using:

`python VGG16_ImageNet_Distributed.py`

To run it in a distributed manner, please check [here](https://github.com/Microsoft/CNTK/wiki/Multiple-GPUs-and-machines#32-python). For example, the command for distributed training on the same machine (with multiple GPUs) with Windows is:

`mpiexec -n <#workers> python VGG16_ImageNet_Distributed.py`

### VGG19_ImageNet_Distributed.py

This is the VGG model that contains 19 layers, which was referred as `ConvNet configuration E` in the [original paper](https://arxiv.org/pdf/1409.1556v6.pdf).

Run the example from the current folder using:

`python VGG19_ImageNet_Distributed.py`

To run it in a distributed manner, please check [here](https://github.com/Microsoft/CNTK/wiki/Multiple-GPUs-and-machines#32-python). For example, the command for distributed training on the same machine (with multiple GPUs) with Windows is:

`mpiexec -n <#workers> python VGG19_ImageNet_Distributed.py`
back to top