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

Write to TensorBoard every x samples. #11152

Merged
merged 17 commits into from
Oct 1, 2018
Merged
Changes from 1 commit
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
32f7df2
Working on improving tensor flow callbacks
sameermanek May 18, 2017
7ceefaa
Adding batch level TensorBoard logging (implementing the `on_batch_en…
sameermanek May 19, 2017
186a4fb
Interim commit -- added notes.
sameermanek Aug 12, 2017
1390f21
Updating to master
sameermanek Aug 12, 2017
a7b3587
Merge branch 'master' of https://github.com/fchollet/keras into tenso…
sameermanek Aug 12, 2017
138b5c5
Corrected stylistic issues -- brought to compliance w/ PEP8
sameermanek Aug 13, 2017
3ba7cb3
Merge branch 'tensorboard-callback-modifications' of https://github.c…
gabrieldemarmiesse Sep 16, 2018
463b704
Added the missing argument in the test suite.
gabrieldemarmiesse Sep 16, 2018
f201418
Added the possibility to choose how frequently tensorboard should log
gabrieldemarmiesse Sep 16, 2018
284d903
Fixed the issue of the validation data not being displayed.
gabrieldemarmiesse Sep 16, 2018
22573c7
Fixed the issue about the callback not remembering when was the last
gabrieldemarmiesse Sep 16, 2018
f4efd69
Removed the error check.
gabrieldemarmiesse Sep 16, 2018
06cc111
Used update_freq instead of write_step.
gabrieldemarmiesse Sep 17, 2018
a1619ae
Forgot to change the constructor call.
gabrieldemarmiesse Sep 17, 2018
cf4c647
Merge branch 'master' into batch_tensorboard
gabrieldemarmiesse Sep 19, 2018
358abe7
Merge branch 'master' into batch_tensorboard
gabrieldemarmiesse Sep 23, 2018
072f923
Merge branch 'batch_tensorboard' of github.com:gabrieldemarmiesse/ker…
gabrieldemarmiesse Sep 23, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Added the missing argument in the test suite.
  • Loading branch information
gabrieldemarmiesse committed Sep 16, 2018
commit 463b704d9cfdc933501c489036a7b0d5a5b90d62
6 changes: 3 additions & 3 deletions keras/callbacks.py
Original file line number Diff line number Diff line change
Expand Up @@ -725,11 +725,11 @@ def __init__(self, log_dir='./logs',
write_graph=True,
write_grads=False,
write_images=False,
write_batch_performance=False,
embeddings_freq=0,
embeddings_layer_names=None,
embeddings_metadata=None,
embeddings_data=None):
embeddings_data=None,
write_batch_performance=False,):
super(TensorBoard, self).__init__()
global tf, projector
try:
Expand Down Expand Up @@ -762,12 +762,12 @@ def __init__(self, log_dir='./logs',
self.write_graph = write_graph
self.write_grads = write_grads
self.write_images = write_images
self.write_batch_performance = write_batch_performance
self.embeddings_freq = embeddings_freq
self.embeddings_layer_names = embeddings_layer_names
self.embeddings_metadata = embeddings_metadata or {}
self.batch_size = batch_size
self.embeddings_data = embeddings_data
self.write_batch_performance = write_batch_performance
self.seen = 0

def set_model(self, model):
Expand Down