pbehjatii / OverNet-to-ONNX

PyTorch super-resolution model (OverNet) with RGB support and ONNX exporter (OverNet: Lightweight Multi-Scale Super-Resolution with Overscaling Network (WACV 2021))

Home Page:https://openaccess.thecvf.com/content/WACV2021/papers/Behjati_OverNet_Lightweight_Multi-Scale_Super-Resolution_With_Overscaling_Network_WACV_2021_paper.pdf

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

OverNet_to_ONNX

Super-resolution is a way of increasing the resolution of images, videos and is widely used in image processing or video editing. In this repository, we show how to export OverNet described in ["OverNet: Lightweight Multi-Scale Super-Resolution with Overscaling Network"] (for increasing spatial resolution within your network for tasks such as super-resolution) from PYTORCH to ONNX and running it using ONNX RUNTIME.

ONNX Runtime is a performance-focused engine for ONNX models, which inferences efficiently across multiple platforms and hardware (Windows, Linux, and Mac and on both CPUs and GPUs). ONNX Runtime has proved to considerably increase performance over multiple models.

Requirements

Steps

First, we need to train the model; however, we already trained OverNet for different scales including x2, x3, and x4. The pre-trained models are in the Checkpoints directory.

1- To convert OverNet to ONNX:

# Scale x2
python OverNet_to_ONNX.py --ckpt_path './checkpoints/OverNet_test_x2.pth.tar' --image '/Images/x2/image_01_LR.png

# Scale x3
python OverNet_to_ONNX.py --ckpt_path './checkpoints/OverNet_test_x3.pth.tar' --image '/Images/x3/image_01_LR.png

# Scale x4
python OverNet_to_ONNX.py --ckpt_path './checkpoints/OverNet_test_x4.pth.tar' --image '/Images/x4/image_01_LR.png

2- In order to print a human readable representation of the graph and at the same time check if the model is well formed:

python ONNX_validate.py 

3- Finally, in order to run the model with ONNX Runtime:

#scale 2
python ONNXRUNTIME.py --output_dir 'outputs' --test_data_dir 'Images/x2'

#scale 3
python ONNXRUNTIME.py --output_dir 'outputs' --test_data_dir 'Images/x3'

#scale 4
python ONNXRUNTIME.py --output_dir 'outputs' --test_data_dir 'Images/x4'

About

PyTorch super-resolution model (OverNet) with RGB support and ONNX exporter (OverNet: Lightweight Multi-Scale Super-Resolution with Overscaling Network (WACV 2021))

https://openaccess.thecvf.com/content/WACV2021/papers/Behjati_OverNet_Lightweight_Multi-Scale_Super-Resolution_With_Overscaling_Network_WACV_2021_paper.pdf


Languages

Language:Python 100.0%