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 72238e5 commit aff514aCopy full SHA for aff514a
official/vision/image_classification/callbacks.py
@@ -128,8 +128,9 @@ def on_epoch_end(self,
128
129
def _calculate_metrics(self) -> MutableMapping[str, Any]:
130
logs = {}
131
- if self._track_lr:
132
- logs['learning_rate'] = self._calculate_lr()
+ # TODO(b/149030439): disable LR reporting.
+ # if self._track_lr:
133
+ # logs['learning_rate'] = self._calculate_lr()
134
return logs
135
136
def _calculate_lr(self) -> int:
0 commit comments