(self, x, en_outs)
| 256 | ]) |
| 257 | |
| 258 | def forward(self, x, en_outs): |
| 259 | N_layers = len(self.de_convs) |
| 260 | for i in range(N_layers): |
| 261 | x = self.de_convs[i](x + en_outs[N_layers-1-i]) |
| 262 | return x |
| 263 | |
| 264 | |
| 265 | class Mask(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected