From cd1481f6eefb1328ea4d7996c35657578500026c Mon Sep 17 00:00:00 2001 From: aweers <32593524+aweers@users.noreply.github.com> Date: Fri, 3 May 2019 16:38:55 +0200 Subject: [PATCH] Lines fit line limit now --- tensorflow/python/keras/callbacks.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tensorflow/python/keras/callbacks.py b/tensorflow/python/keras/callbacks.py index 29535918fa0..e1e80a6b99a 100644 --- a/tensorflow/python/keras/callbacks.py +++ b/tensorflow/python/keras/callbacks.py @@ -1170,9 +1170,8 @@ class LearningRateScheduler(Callback): verbose: int. 0: quiet, 1: update messages. ```python - # This function keeps the learning rate - # at 0.001 for the first ten epochs and - # decreases it exponentially after that. + # This function keeps the learning rate at 0.001 for the first ten epochs + # and decreases it exponentially after that. def scheduler(epoch): if epoch < 10: return 0.001