(self, z)
| 438 | def __init__(self, **ignorekwargs): |
| 439 | super().__init__() |
| 440 | def forward(self, z): |
| 441 | return z |
| 442 | |
| 443 | class Decoder(nn.Module): |
| 444 | def __init__(self, *, ch, out_ch, ch_mult=(1,2,4,8), num_res_blocks, |
nothing calls this directly
no outgoing calls
no test coverage detected