You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Why the shape of running_mean in Instancenorm is [C] not [N,C] ?
the code " self.running_var:copy(self.bn.running_var:view(input:size(1),self.nOutput):mean(1))"
I don't the reason running_mean/var view to (N,C) and mean(1)? So it similar to Batchnorm?
I find the cuda-kernel of Instancenorm used batchnorm's kernel ,the shape of running_men in Bn is [C], Instance's also [ C]too?
The text was updated successfully, but these errors were encountered:
Why the shape of running_mean in Instancenorm is [C] not [N,C] ?
the code " self.running_var:copy(self.bn.running_var:view(input:size(1),self.nOutput):mean(1))"
I don't the reason running_mean/var view to (N,C) and mean(1)? So it similar to Batchnorm?
I find the cuda-kernel of Instancenorm used batchnorm's kernel ,the shape of running_men in Bn is [C], Instance's also [ C]too?
The text was updated successfully, but these errors were encountered: