(self, need_GT=True)
| 407 | return self.log_dict |
| 408 | |
| 409 | def get_current_visuals(self, need_GT=True): |
| 410 | out_dict = OrderedDict() |
| 411 | out_dict['LQ'] = self.var_L.detach()[0].float().cpu() |
| 412 | # out_dict['rlt'] = self.fake_H.detach()[0].float().cpu() |
| 413 | out_dict['rlt'] = self.fake_H |
| 414 | if need_GT: |
| 415 | out_dict['GT'] = self.real_H.detach()[0].float().cpu() |
| 416 | return out_dict |
| 417 | |
| 418 | def print_network(self): |
| 419 | s, n = self.get_network_description(self.netG) |
nothing calls this directly
no outgoing calls
no test coverage detected