Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update callbacks.py #15977

Merged
merged 1 commit into from Jan 31, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions keras/callbacks.py
Expand Up @@ -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
Expand All @@ -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.
Expand Down