File size: 1,982 Bytes
49f0d37 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 |
#!/usr/bin/env bash
# UDM10
python inference_script.py \
--input_dir datasets/test/UDM10/LQ-Video \
--model_path pretrained_models/DOVE \
--output_path results/DOVE/UDM10 \
--is_vae_st \
python eval_metrics.py \
--gt datasets/test/UDM10/GT \
--pred results/DOVE/UDM10 \
--metrics psnr,ssim,lpips,dists,clipiqa
# SPMCS
python inference_script.py \
--input_dir datasets/test/SPMCS/LQ-Video \
--model_path pretrained_models/DOVE \
--output_path results/DOVE/SPMCS \
--is_vae_st \
python eval_metrics.py \
--gt datasets/test/UDM10/GT \
--pred results/DOVE/SPMCS \
--metrics psnr,ssim,lpips,dists,clipiqa
# YouHQ40
python inference_script.py \
--input_dir datasets/test/YouHQ40/LQ-Video \
--model_path pretrained_models/DOVE \
--output_path results/DOVE/YouHQ40 \
--is_vae_st \
python eval_metrics.py \
--gt datasets/test/UDM10/GT \
--pred results/DOVE/YouHQ40 \
--metrics psnr,ssim,lpips,dists,clipiqa
# RealVSR
python inference_script.py \
--input_dir datasets/test/RealVSR/LQ-Video \
--model_path pretrained_models/DOVE \
--output_path results/DOVE/RealVSR \
--is_vae_st \
--upscale 1 \
python eval_metrics.py \
--gt datasets/test/UDM10/GT \
--pred results/DOVE/RealVSR \
--metrics psnr,ssim,lpips,dists,clipiqa
# MVSR4x
python inference_script.py \
--input_dir datasets/test/MVSR4x/LQ-Video \
--model_path pretrained_models/DOVE \
--output_path results/DOVE/MVSR4x \
--is_vae_st \
--upscale 1 \
python eval_metrics.py \
--gt datasets/test/UDM10/GT \
--pred results/DOVE/MVSR4x \
--metrics psnr,ssim,lpips,dists,clipiqa
# VideoLQ
python inference_script.py \
--input_dir datasets/test/VideoLQ/LQ-Video \
--model_path pretrained_models/DOVE \
--output_path results/DOVE/VideoLQ \
--is_vae_st \
python eval_metrics.py \
--gt datasets/test/UDM10/GT \
--pred results/DOVE/VideoLQ \
--metrics clipiqa
|