MCPcopy Create free account
hub / github.com/ZhengPeng7/BiRefNet / forward

Method forward

models/modules/aspp.py:79–83  ·  view source on GitHub ↗
(self, x)

Source from the content-addressed store, hash-verified

77 self.relu = nn.ReLU(inplace=True)
78
79 def forward(self, x):
80 x = self.atrous_conv(x)
81 x = self.bn(x)
82
83 return self.relu(x)
84
85
86class ASPPDeformable(nn.Module):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected