Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
vision
Commits
abc15063
Unverified
Commit
abc15063
authored
Apr 10, 2020
by
moto
Committed by
GitHub
Apr 10, 2020
Browse files
Add commands used to train `fcn_resnet50` and `deeplabv3_resnet50` (#2091)
parent
bf843c66
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
references/segmentation/README.md
references/segmentation/README.md
+10
-0
No files found.
references/segmentation/README.md
View file @
abc15063
...
@@ -6,11 +6,21 @@ training and evaluation scripts to quickly bootstrap research.
...
@@ -6,11 +6,21 @@ training and evaluation scripts to quickly bootstrap research.
All models have been trained on 8x V100 GPUs.
All models have been trained on 8x V100 GPUs.
## fcn_resnet50
```
python -m torch.distributed.launch --nproc_per_node=8 --use_env train.py --lr 0.02 --dataset coco -b 4 --model fcn_resnet50 --aux-loss
```
## fcn_resnet101
## fcn_resnet101
```
```
python -m torch.distributed.launch --nproc_per_node=8 --use_env train.py --lr 0.02 --dataset coco -b 4 --model fcn_resnet101 --aux-loss
python -m torch.distributed.launch --nproc_per_node=8 --use_env train.py --lr 0.02 --dataset coco -b 4 --model fcn_resnet101 --aux-loss
```
```
## deeplabv3_resnet50
```
python -m torch.distributed.launch --nproc_per_node=8 --use_env train.py --lr 0.02 --dataset coco -b 4 --model deeplabv3_resnet50 --aux-loss
```
## deeplabv3_resnet101
## deeplabv3_resnet101
```
```
python -m torch.distributed.launch --nproc_per_node=8 --use_env train.py --lr 0.02 --dataset coco -b 4 --model deeplabv3_resnet101 --aux-loss
python -m torch.distributed.launch --nproc_per_node=8 --use_env train.py --lr 0.02 --dataset coco -b 4 --model deeplabv3_resnet101 --aux-loss
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment