File size: 623 Bytes
d6ec83b |
1 2 3 4 5 6 7 8 9 |
#!/bin/bash
python main.py --model LAMBDAEDSR --data_test Set5+Set14+B100+Urban100 --save_results --rgb_range 1 --data_range 801-900 \
--scale 2 --n_feats 256 --n_resblocks 32 --res_scale 0.1 --pre_train ../experiment/EDSR_LAMBDA_x2/model/model_best.pt --test_only --chop \
--dir_data="/data/ssd/public/liuhy/sr/dataset"
python main.py --model PAEDSR --data_test Set5+Set14+B100+Urban100 --save_results --rgb_range 1 --data_range 801-900 \
--scale 2 --n_feats 256 --n_resblocks 32 --res_scale 0.1 --pre_train ../experiment/EDSR_PA_x2/model/model_best.pt --test_only --chop \
--dir_data="/data/ssd/public/liuhy/sr/dataset" |