(self, x)
| 721 | return y |
| 722 | |
| 723 | def forward(self, x): |
| 724 | x = self.forward_features(x) |
| 725 | x = self.global_pool(x) |
| 726 | if self.drop_rate > 0.: |
| 727 | x = F.dropout(x, p=self.drop_rate, training=self.training) |
| 728 | x = self.classifier(x) |
| 729 | return x |
| 730 | |
| 731 | |
| 732 | class HighResolutionNetFeatures(HighResolutionNet): |
nothing calls this directly
no test coverage detected