pspnet_res101_cityscapes.sh 613 字节
Newer Older
R
Rosun 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
#!/bin/bash


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