AICurious Logo

What is: Off-Diagonal Orthogonal Regularization?

SourceLarge Scale GAN Training for High Fidelity Natural Image Synthesis
Year2000
Data SourceCC BY-SA - https://paperswithcode.com

Off-Diagonal Orthogonal Regularization is a modified form of orthogonal regularization originally used in BigGAN. The original orthogonal regularization is known to be limiting so the authors explore several variants designed to relax the constraint while still imparting the desired smoothness to the models. They opt for a modification where they remove diagonal terms from the regularization, and aim to minimize the pairwise cosine similarity between filters but does not constrain their norm:

R_β(W)=βWTW(1I)2_FR\_{\beta}\left(W\right) = \beta|| W^{T}W \odot \left(\mathbf{1}-I\right) ||^{2}\_{F}

where 1\mathbf{1} denotes a matrix with all elements set to 1. The authors sweep β\beta values and select 10410^{−4}.