(self, x)
| 260 | |
| 261 | |
| 262 | def forward(self, x): |
| 263 | out = self.model(x) |
| 264 | return out |
| 265 | |
| 266 | class DownBlock2d(nn.Module): |
| 267 | def __init__(self, input_nc, output_nc, norm_layer=nn.BatchNorm2d, nonlinearity=nn.LeakyReLU(), use_spect=False): |
nothing calls this directly
no outgoing calls
no test coverage detected