style-based-recalibration-module
style-based-recalibration-module copied to clipboard
Unable to reproduce the result
Didn't see fully connected or channel fully connected (CFC) in your code? It's different from what you stated in your paper.
“z = t * self.cfc[None, :, :]”
This is the dot product of matrix
Can you please publish the code for the CFC?
Didn't see fully connected or channel fully connected (CFC) in your code? It's different from what you stated in your paper.
“z = t * self.cfc[None, :, :]”
This is the dot product of matrix
作者意思就是点积操作,只不过类比为FC,但这里实现确实是element-wise multi,有点奇怪