(self, x)
| 204 | self.output_nc = out_channels |
| 205 | |
| 206 | def forward(self, x): |
| 207 | x = self.first(x) |
| 208 | out=[x] |
| 209 | for i in range(self.layers): |
| 210 | model = getattr(self, 'down'+str(i)) |
| 211 | x = model(x) |
| 212 | out.append(x) |
| 213 | return out |
| 214 | |
| 215 | class FineDecoder(nn.Module): |
| 216 | """docstring for FineDecoder""" |
nothing calls this directly
no outgoing calls
no test coverage detected