(self, x)
| 237 | ]) |
| 238 | |
| 239 | def forward(self, x): |
| 240 | en_outs = [] |
| 241 | for i in range(len(self.en_convs)): |
| 242 | x = self.en_convs[i](x) |
| 243 | en_outs.append(x) |
| 244 | return x, en_outs |
| 245 | |
| 246 | |
| 247 | class Decoder(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected