(self, x)
| 261 | self.transform = get_data_transform(in_channels=in_channels, input_img_size=input_img_size) |
| 262 | |
| 263 | def forward(self, x): |
| 264 | x = self.encoder(x) |
| 265 | x = self.decoder(x) |
| 266 | return x |
| 267 | |
| 268 | |
| 269 | if __name__ == "__main__": |
nothing calls this directly
no outgoing calls
no test coverage detected