(self, x)
| 130 | self.fc_layer = nn.Linear(self.feat_dim, self.num_classes) |
| 131 | |
| 132 | def predict(self, x): |
| 133 | feat = self.feature(x) |
| 134 | feat = feat.view(feat.size(0), -1) |
| 135 | out = self.fc_layer(feat) |
| 136 | return out |
| 137 | |
| 138 | def forward(self, x): |
| 139 | # print("input shape:", x.shape) |
nothing calls this directly
no outgoing calls
no test coverage detected