(self, destination=None, prefix='', keep_vars=False)
| 82 | checkpoint_activations=checkpoint_activations) |
| 83 | |
| 84 | def state_dict(self, destination=None, prefix='', keep_vars=False): |
| 85 | return self.model.state_dict(destination=destination, prefix=prefix, |
| 86 | keep_vars=keep_vars) |
| 87 | |
| 88 | def load_state_dict(self, state_dict, strict=True): |
| 89 | return self.model.load_state_dict(state_dict, strict=strict) |
no outgoing calls
no test coverage detected