(self, x)
| 103 | self.classifier = nn.Linear(768, num_classes) |
| 104 | |
| 105 | def forward(self, x): |
| 106 | x = self.features(x) |
| 107 | x = self.classifier(x.view(x.size(0),-1)) |
| 108 | return x |
| 109 | |
| 110 | |
| 111 | class NetworkCIFAR(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected