The optimizer's state dictionary.
(self)
| 120 | |
| 121 | @property |
| 122 | def state(self): |
| 123 | """The optimizer's state dictionary.""" |
| 124 | return self._state |
| 125 | |
| 126 | @state.setter |
| 127 | def state(self, state: dict): |
nothing calls this directly
no outgoing calls
no test coverage detected