https://github.com/fuzhenxin/mxnet_dist
https://github.com/fuzhenxin/mxnet_dist
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/fuzhenxin/mxnet_dist
- Owner: fuzhenxin
- Created: 2018-12-25T14:27:41.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-01-03T08:12:19.000Z (over 6 years ago)
- Last Synced: 2024-12-26T21:08:49.715Z (4 months ago)
- Language: Python
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Mxnet_dist
## Step 1
Download https://github.com/apache/incubator-mxnet## Step 2
No passwd login```
ssh-copy-id localhost```
## Step 3
Install requirements
```
pip install mxnet
pip install gluoncv
```## Step 4
Create a file "host" and the content of the file is ips (one ip per line)For example:
```
127.0.0.1
```## Step 5
Run command: multi machine
```
python incubator-mxnet/tools/launch.py -n 1 -s 1 -H host --launcher ssh "python cifar10.py"
```
Run command: single machine
```
python cifar10_single.py
```