We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ccc0c39 commit e0528d3Copy full SHA for e0528d3
pytorch_lightning/callbacks/lr_monitor.py
@@ -344,6 +344,7 @@ def lr_sch_names(self) -> List[str]:
344
# TODO remove `lr_sch_names` and `add_lr_sch_names` argument in v1.7.0
345
rank_zero_deprecation(
346
"`LearningRateMonitor.lr_sch_names` has been deprecated in v1.5 and will be removed in 1.7."
347
- " Consider accessing them using `LearningRateMonitor.lrs.keys()`."
+ " Consider accessing them using `LearningRateMonitor.lrs.keys()` which will return"
348
+ " the names of all the optimizers, even those without a scheduler."
349
)
350
return self._lr_sch_names
0 commit comments