(self)
| 392 | |
| 393 | @property |
| 394 | def model_dir(self): |
| 395 | return "{}_{}_{}_{}_{}_{}".format( |
| 396 | self.model_name, self.dataset_name, self.gan_type, self.img_size, self.z_dim, self.sn) |
| 397 | |
| 398 | def save(self, checkpoint_dir, step): |
| 399 | checkpoint_dir = os.path.join(checkpoint_dir, self.model_dir) |
nothing calls this directly
no outgoing calls
no test coverage detected