(self, model, optimizer=None)
| 322 | """ |
| 323 | |
| 324 | def __init__(self, model, optimizer=None): |
| 325 | self.model = model |
| 326 | self.optimizer = optimizer |
| 327 | |
| 328 | def state_dict(self): |
| 329 | # this line automatically manages FSDP FQN's, as well as sets the default state dict type to FSDP.SHARDED_STATE_DICT |
nothing calls this directly
no outgoing calls
no test coverage detected