-
Notifications
You must be signed in to change notification settings - Fork 298
Classic
Tang, Wenyi edited this page May 31, 2019
·
3 revisions
Classic includes: srcnn, espcn, vdsr, drcn, drrn
Download weights, and extract to the default ./Results/
# "T" means VSRTorch model
python prepare_data.py --filter "Tsrcnn|Tespcn|Tvdsr|Tdrcn|Tdrrn"
# Download test data (optional)
python prepare_data.py --filter "set5|set14|bsd100|urban100" --data_dir=./Data
Test model:
cd VSRTorch
models=(srcnn espcn vdsr drcn drrn)
for m in ${models[@]}
do
python eval.py $m --cuda --pth ../Results/${m}_ep0200.pth --channel 3 -t set5 set14 bsd100 urban100
done