I am trying to do research on batch normalization, and had to make some modifications for the pytorch BN code. I dig into the pytorch code and got stuck with torch.nn.functional.batch_norm
, which references torch.batch_norm
.
The problem is that torch.batch_norm
cannot be further found in the torch library. Is there any way I can find the source code of this built-in function and re-implement it? Thanks!