(self, x)
| 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 | |
| 710 | class Decoder4(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected