(self, prefix: str = '', recurse: bool = True)
| 25 | |
| 26 | class PyTorchDistributedDataParallel(DDP): |
| 27 | def named_parameters(self, prefix: str = '', recurse: bool = True): |
| 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) |
nothing calls this directly
no test coverage detected