(self, x)
| 211 | return x |
| 212 | |
| 213 | def forward(self, x): |
| 214 | x = self.forward_features(x) |
| 215 | x = self.global_pool(x) |
| 216 | if self.drop_rate: |
| 217 | F.dropout(x, self.drop_rate, training=self.training) |
| 218 | x = self.fc(x) |
| 219 | return x |
| 220 | |
| 221 | |
| 222 | def _xception(variant, pretrained=False, **kwargs): |
nothing calls this directly
no test coverage detected