(self, batch_size, image_height, image_width)
| 364 | } |
| 365 | |
| 366 | def get_shape_dict(self, batch_size, image_height, image_width): |
| 367 | latent_height, latent_width = self.check_dims(batch_size, image_height, image_width) |
| 368 | return { |
| 369 | 'latent': (batch_size, 4, latent_height, latent_width), |
| 370 | 'images': (batch_size, 3, image_height, image_width) |
| 371 | } |
| 372 | |
| 373 | def get_sample_input(self, batch_size, image_height, image_width): |
| 374 | latent_height, latent_width = self.check_dims(batch_size, image_height, image_width) |
no test coverage detected