(self, x, z)
| 53 | self.output_nc = out_channels |
| 54 | |
| 55 | def forward(self, x, z): |
| 56 | out = self.input_layer(x) |
| 57 | out_list = [out] |
| 58 | for i in range(self.layers): |
| 59 | model = getattr(self, 'encoder' + str(i)) |
| 60 | out = model(out, z) |
| 61 | out_list.append(out) |
| 62 | return out_list |
| 63 | |
| 64 | class ADAINDecoder(nn.Module): |
| 65 | """docstring for ADAINDecoder""" |
nothing calls this directly
no outgoing calls
no test coverage detected