MCPcopy Create free account
hub / github.com/Sirwenhao/Deep-Learning-Notes / forward

Method forward

CV/Pytorch_classification/RegNet/model.py:264–267  ·  view source on GitHub ↗
(self, x: Tensor)

Source from the content-addressed store, hash-verified

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):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected