(self, states)
| 528 | return states |
| 529 | |
| 530 | def set_states(self, states): |
| 531 | super().set_states(states) |
| 532 | if 'history' in states: |
| 533 | self.history = states['history'] |
| 534 | |
| 535 | |
| 536 | class Adam(Optimizer): |
nothing calls this directly
no test coverage detected