(self, destination=None, prefix='', keep_vars=False)
| 28 | return self.module.named_parameters(prefix=prefix, recurse=recurse) |
| 29 | |
| 30 | def state_dict(self, destination=None, prefix='', keep_vars=False): |
| 31 | sd = self.module.state_dict(destination, prefix, keep_vars) |
| 32 | return sd |
| 33 | |
| 34 | def load_state_dict(self, state_dict, strict=True): |
| 35 | return self.module.load_state_dict(state_dict, strict=strict) |
nothing calls this directly
no test coverage detected