(self, network)
| 111 | pass |
| 112 | |
| 113 | def print_network(self, network): |
| 114 | num_params = 0 |
| 115 | for param in network.parameters(): |
| 116 | num_params += param.numel() |
| 117 | print(network) |
| 118 | print('Total number of parameters: %d' % num_params) |
| 119 | |
| 120 | def _get_scheduler(self, optimizer, opt): |
| 121 | if opt.lr_policy == 'lambda': |
nothing calls this directly
no outgoing calls
no test coverage detected