(self, x)
| 813 | out_channels=tmp_chn, depth=rescale_module_depth) |
| 814 | |
| 815 | def forward(self, x): |
| 816 | x = self.rescaler(x) |
| 817 | x = self.decoder(x) |
| 818 | return x |
| 819 | |
| 820 | |
| 821 | class Upsampler(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected