bryandlee / animegan2-pytorch

PyTorch implementation of AnimeGANv2

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ResizeRight and Antialiased CNNs recommendation

torridgristle opened this issue · comments

Rather than F.interpolate with optional alignment of corners you could try ResizeRight and in places where convolution strides are above 1 you can add Antialiased CNNs's BlurPool after them and their activation functions to make it more shift-invariant, hopefully increasing quality and making things more consistent. It's thankfully painless to implement.

Hi, thanks for the suggestions! I've been actually trying out some translation-equivariance techniques for video applications.