From e84c83c38c0bdb7212271092e90f5a60959297e1 Mon Sep 17 00:00:00 2001 From: Cheril Shah <79891166+Cheril311@users.noreply.github.com> Date: Sat, 29 Jan 2022 13:05:00 +0530 Subject: [PATCH] Update callbacks.py Addresses issue #15972 --- keras/callbacks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/keras/callbacks.py b/keras/callbacks.py index c2adab3d6f4..37ec5bc4374 100644 --- a/keras/callbacks.py +++ b/keras/callbacks.py @@ -2081,7 +2081,7 @@ class TensorBoard(Callback, version_utils.TensorBoardVersionSelector): * Metrics summary plots * Training graph visualization - * Activation histograms + * Weight histograms * Sampled profiling When used in `Model.evaluate`, in addition to epoch summaries, there will be @@ -2103,7 +2103,7 @@ class TensorBoard(Callback, version_utils.TensorBoardVersionSelector): log_dir: the path of the directory where to save the log files to be parsed by TensorBoard. e.g. log_dir = os.path.join(working_dir, 'logs') This directory should not be reused by any other callbacks. - histogram_freq: frequency (in epochs) at which to compute activation and + histogram_freq: frequency (in epochs) at which to compute weight histograms for the layers of the model. If set to 0, histograms won't be computed. Validation data (or split) must be specified for histogram visualizations.