deeplabv3_res101_pascalcontext.sh 694 字节
Newer Older
R
Rosun 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
#!/bin/bash


# Deeplabv3_Res101_PascalContext
# 1.1 Training
CUDA_VISIBLE_DEVICES=0,1,2,3  python train.py  --use_gpu \
                                              --use_mpio \
                                              --cfg ./configs/deeplabv3_res101_pascalcontext.yaml | tee -a train.log 2>&1
# 1.2 single-scale testing
CUDA_VISIBLE_DEVICES=0 python eval.py --use_gpu \
                                      --cfg ./configs/deeplabv3_res101_pascalcontext.yaml
# 1.3 multi-scale testing
CUDA_VISIBLE_DEVICES=0 python eval.py --use_gpu \
                                      --multi_scales \
                                      --cfg ./configs/deeplabv3_res101_pascalcontext.yaml