(self, x)
| 287 | self.drop = nn.Dropout(p=0.1) |
| 288 | |
| 289 | def forward(self, x): |
| 290 | a = self.a(x) |
| 291 | b = self.b(a) |
| 292 | c = self.c(a) |
| 293 | d = self.d(a) |
| 294 | e = self.e(b) |
| 295 | out = torch.cat((a, b, c, d, e), 1) |
| 296 | if self.dropout: |
| 297 | out = self.drop(out) |
| 298 | return out |
| 299 | |
| 300 | |
| 301 | def get_aspp(high_level_ch, bottleneck_ch, output_stride, dpc=False): |
nothing calls this directly
no outgoing calls
no test coverage detected