(self, optimizer)
| 80 | @registry.register('lr_scheduler', 'noop') |
| 81 | class NoOpLRScheduler: |
| 82 | def __init__(self, optimizer): |
| 83 | pass |
| 84 | |
| 85 | def update_lr(self, current_step): |
| 86 | pass |
nothing calls this directly
no outgoing calls
no test coverage detected