(self, x)
| 55 | return [feature, res] |
| 56 | |
| 57 | def predict(self, x): |
| 58 | feature = self.feature(x) |
| 59 | feature = feature.view(feature.size(0), -1) |
| 60 | feature = self.bn(feature) |
| 61 | res = self.fc_layer(feature) |
| 62 | out = F.softmax(res, dim=1) |
| 63 | |
| 64 | return out |
| 65 | |
| 66 | |
| 67 | class VGG16_vib(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected