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