Return a copy of the current object.
(self)
| 25 | return self.learning_rate(step=step, cur_loss=cur_loss) |
| 26 | |
| 27 | def copy(self): |
| 28 | """Return a copy of the current object.""" |
| 29 | return deepcopy(self) |
| 30 | |
| 31 | def set_params(self, hparam_dict): |
| 32 | """Set the scheduler hyperparameters from a dictionary.""" |
no outgoing calls
no test coverage detected