(self, optimizer, gamma, last_epoch=-1)
| 489 | """ |
| 490 | |
| 491 | def __init__(self, optimizer, gamma, last_epoch=-1): |
| 492 | self.gamma = gamma |
| 493 | super(ExponentialLR, self).__init__(optimizer, last_epoch) |
| 494 | |
| 495 | def get_lr(self): |
| 496 | if not self._get_lr_called_within_step: |