(self, x)
| 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 | |
| 148 | class FaceNet64(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected