nn.Module: normalization layer after the third convolution layer
(self)
| 252 | |
| 253 | @property |
| 254 | def norm3(self): |
| 255 | """nn.Module: normalization layer after the third convolution layer""" |
| 256 | return getattr(self, self.norm3_name) |
| 257 | |
| 258 | def forward(self, x): |
| 259 | """Forward function.""" |
no outgoing calls
no test coverage detected