MCPcopy Create free account
hub / github.com/VisionLearningGroup/OVANet / forward

Method forward

models/basenet.py:33–39  ·  view source on GitHub ↗
(self, x)

Source from the content-addressed store, hash-verified

31
32
33 def forward(self, x):
34 x = self.features(x)
35 if self.top:
36 return x
37 else:
38 x = x.view(x.size(0), self.dim)
39 return x
40
41
42class VGGBase(nn.Module):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected