Joe0120
commited on
Commit
·
cd9bfd6
1
Parent(s):
9dc5a5a
fix(README): typo (#1122)
Browse files
README.md
CHANGED
@@ -141,11 +141,11 @@ We also support multi-nodes training. Just add the following args:
|
|
141 |
Suppose you want to train YOLOX on 2 machines, and your master machines's IP is 123.123.123.123, use port 12312 and TCP.
|
142 |
On master machine, run
|
143 |
```shell
|
144 |
-
python tools/train.py -n yolox-s -b 128 --dist-url tcp://123.123.123.123:12312 --
|
145 |
```
|
146 |
On the second machine, run
|
147 |
```shell
|
148 |
-
python tools/train.py -n yolox-s -b 128 --dist-url tcp://123.123.123.123:12312 --
|
149 |
```
|
150 |
|
151 |
**Others**
|
|
|
141 |
Suppose you want to train YOLOX on 2 machines, and your master machines's IP is 123.123.123.123, use port 12312 and TCP.
|
142 |
On master machine, run
|
143 |
```shell
|
144 |
+
python tools/train.py -n yolox-s -b 128 --dist-url tcp://123.123.123.123:12312 --num_machines 2 --machine_rank 0
|
145 |
```
|
146 |
On the second machine, run
|
147 |
```shell
|
148 |
+
python tools/train.py -n yolox-s -b 128 --dist-url tcp://123.123.123.123:12312 --num_machines 2 --machine_rank 1
|
149 |
```
|
150 |
|
151 |
**Others**
|