MCPcopy Create free account
hub / github.com/NVIDIA/semantic-segmentation / forward

Method forward

network/utils.py:289–298  ·  view source on GitHub ↗
(self, x)

Source from the content-addressed store, hash-verified

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
301def get_aspp(high_level_ch, bottleneck_ch, output_stride, dpc=False):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected