(self, state_dict, strict=True)
| 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) |
| 36 | |
| 37 | |
| 38 | class DistributedDataParallel(Module): |
nothing calls this directly
no test coverage detected