MCPcopy Create free account
hub / github.com/LetheSec/PLG-MI-Attack / forward

Method forward

baselines/classify.py:138–145  ·  view source on GitHub ↗
(self, x)

Source from the content-addressed store, hash-verified

136 return out
137
138 def forward(self, x):
139 # print("input shape:", x.shape)
140 # import pdb; pdb.set_trace()
141
142 feat = self.feature(x)
143 feat = feat.view(feat.size(0), -1)
144 out = self.fc_layer(feat)
145 return [feat, out]
146
147
148class FaceNet64(nn.Module):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected