Set state.
(self, state)
| 21 | super(RAdam, self).__init__(params, defaults) |
| 22 | |
| 23 | def __setstate__(self, state): |
| 24 | """Set state.""" |
| 25 | super(RAdam, self).__setstate__(state) |
| 26 | |
| 27 | def step(self, closure=None): |
| 28 | """Run one step.""" |
nothing calls this directly
no outgoing calls
no test coverage detected