Skip to content

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

Pretrained Models

VSR (Tensorflow)

  1. SRCNN

VSRTorch

  1. Classic
  2. CARN
  3. ESRGAN
  4. TecoGAN
  5. SOF-VSR
  6. FRVSR
  7. RBPN
Clone this wiki locally