MCPcopy Create free account
hub / github.com/OpenDriveLab/OccNet / forward

Method forward

projects/mmdet3d_plugin/models/backbones/vovnet.py:172–177  ·  view source on GitHub ↗
(self, x)

Source from the content-addressed store, hash-verified

170 self.hsigmoid = Hsigmoid()
171
172 def forward(self, x):
173 input = x
174 x = self.avg_pool(x)
175 x = self.fc(x)
176 x = self.hsigmoid(x)
177 return input * x
178
179
180class _OSA_module(nn.Module):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected