nn.Module: normalization layer after the second convolution layer
(self)
| 62 | |
| 63 | @property |
| 64 | def norm2(self): |
| 65 | """nn.Module: normalization layer after the second convolution layer""" |
| 66 | return getattr(self, self.norm2_name) |
| 67 | |
| 68 | def forward(self, x): |
| 69 | """Forward function.""" |
no outgoing calls
no test coverage detected