(self, state_dict, config)
| 634 | |
| 635 | class _RawModelWrapper: |
| 636 | def __init__(self, state_dict, config): |
| 637 | self._state_dict = state_dict |
| 638 | self.config = config |
| 639 | |
| 640 | def state_dict(self): |
| 641 | return self._state_dict |
nothing calls this directly
no outgoing calls
no test coverage detected