MCPcopy Create free account
hub / github.com/alinlab/SelfPatch / forward

Method forward

segmentation/backbones/cgnet.py:180–183  ·  view source on GitHub ↗
(self, x)

Source from the content-addressed store, hash-verified

178 self.pool.append(nn.AvgPool2d(3, stride=2, padding=1))
179
180 def forward(self, x):
181 for pool in self.pool:
182 x = pool(x)
183 return x
184
185
186@BACKBONES.register_module()

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected