enhance readme on commands example
Browse files- configs/metadata.json +2 -1
- docs/readme.md +4 -0
configs/metadata.json
CHANGED
@@ -1,7 +1,8 @@
|
|
1 |
{
|
2 |
"schema": "https://github.com/Project-MONAI/MONAI-extra-test-data/releases/download/0.8.1/meta_schema_20220324.json",
|
3 |
-
"version": "0.2.
|
4 |
"changelog": {
|
|
|
5 |
"0.2.0": "update license files",
|
6 |
"0.1.0": "complete the first version model package",
|
7 |
"0.0.1": "initialize the model package structure"
|
|
|
1 |
{
|
2 |
"schema": "https://github.com/Project-MONAI/MONAI-extra-test-data/releases/download/0.8.1/meta_schema_20220324.json",
|
3 |
+
"version": "0.2.1",
|
4 |
"changelog": {
|
5 |
+
"0.2.1": "enhance readme on commands example",
|
6 |
"0.2.0": "update license files",
|
7 |
"0.1.0": "complete the first version model package",
|
8 |
"0.0.1": "initialize the model package structure"
|
docs/readme.md
CHANGED
@@ -58,6 +58,7 @@ python -m monai.bundle run training \
|
|
58 |
```
|
59 |
|
60 |
Override the `train` config to execute multi-GPU training:
|
|
|
61 |
```
|
62 |
torchrun --standalone --nnodes=1 --nproc_per_node=2 -m monai.bundle run training \
|
63 |
--meta_file configs/metadata.json \
|
@@ -65,6 +66,9 @@ torchrun --standalone --nnodes=1 --nproc_per_node=2 -m monai.bundle run training
|
|
65 |
--logging_file configs/logging.conf
|
66 |
```
|
67 |
|
|
|
|
|
|
|
68 |
Override the `train` config to execute evaluation with the trained model:
|
69 |
|
70 |
```
|
|
|
58 |
```
|
59 |
|
60 |
Override the `train` config to execute multi-GPU training:
|
61 |
+
|
62 |
```
|
63 |
torchrun --standalone --nnodes=1 --nproc_per_node=2 -m monai.bundle run training \
|
64 |
--meta_file configs/metadata.json \
|
|
|
66 |
--logging_file configs/logging.conf
|
67 |
```
|
68 |
|
69 |
+
Please note that the distributed training related options depend on the actual running environment, thus you may need to remove `--standalone`, modify `--nnodes` or do some other necessary changes according to the machine you used.
|
70 |
+
Please refer to [pytorch's official tutorial](https://pytorch.org/tutorials/intermediate/ddp_tutorial.html) for more details.
|
71 |
+
|
72 |
Override the `train` config to execute evaluation with the trained model:
|
73 |
|
74 |
```
|