(self, x: Tensor)
| 262 | m.zero_init_last_bn() |
| 263 | |
| 264 | def forward(self, x: Tensor) -> Tensor: |
| 265 | for layer in self.children(): |
| 266 | x = layer(x) |
| 267 | return x |
| 268 | |
| 269 | @staticmethod |
| 270 | def _build_stage_info(cfg: dict): |
nothing calls this directly
no outgoing calls
no test coverage detected