MCPcopy Create free account
hub / github.com/ChunmingHe/WS-SAM / forward

Method forward

lib/Modules.py:704–707  ·  view source on GitHub ↗
(self, x)

Source from the content-addressed store, hash-verified

702 return nn.Conv2d(in_channels, out_channels, kernel_size, padding=(kernel_size // 2), bias=bias)
703
704 def forward(self, x):
705 res = self.body(x)
706 res += x
707 return res
708
709
710class Decoder4(nn.Module):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected