AliaksandrSiarohin / gan

Gan implimentation in keras
2 stars 3 forks source link

renorm in DecorelationNormalization #1

Open YaoshengFu opened 5 years ago

YaoshengFu commented 5 years ago

Could you please explain what is renorm doing in the implementation of DecorelationNormalization? Thanks!

AliaksandrSiarohin commented 5 years ago

This is just an extention of https://arxiv.org/abs/1702.03275 for decorelation. In principle it should be useful to stabilise covariance matrix (note that intuitively you need more samples for decorelation, than for batch norm), but in my experiments renorm was not useful.

YaoshengFu commented 5 years ago

Got it, thanks for your explanation!