models#

Modern models are based on U-Net like shape - using high receptive field by encoder decoder model with skip connection methods;

alt text

Resources#

UpSample method#

for Signal Processing#

  • insert zero

  • apply low pass filter

alt text

One could generalize the model by using any given interpolation method instead of applying Low Pass Filter.

for Image Processing#

  • increase zero

  • Apply Interpolation

alt text

alt text

upsample layer#

alt text

Resources#