(self, destination=None, prefix='', keep_vars=False)
| 76 | return self.module.named_parameters(prefix=prefix, recurse=recurse) |
| 77 | |
| 78 | def state_dict(self, destination=None, prefix='', keep_vars=False): |
| 79 | return self.module.state_dict(destination, prefix, keep_vars) |
| 80 | |
| 81 | def load_state_dict(self, state_dict, strict=True): |
| 82 | return self.module.load_state_dict(state_dict, strict=strict) |
no outgoing calls
no test coverage detected