get warnings for tensorboard : summary name is illegal
See original GitHub issueAfter I add tensorboard into callbacks, it shows warning of summary name format is illegal. I suspect it could be caused by the keras model summary format.
warnings
INFO:tensorflow:Summary name convolution2d_1_W:0 is illegal; using convolution2d_1_W_0 instead.
code
tensorboard = keras.callbacks.TensorBoard(
log_dir='tensorboard/esc_example/' + name + '/',
write_graph=True,
histogram_freq=1
)
Issue Analytics
- State:
- Created 7 years ago
- Reactions:12
- Comments:14 (2 by maintainers)
Top Results From Across the Web
INFO:tensorflow:Summary name conv2d_1/kernel:0 is illegal
I am trying to use the tensorboard callback in keras. When I run the pretrained inceptionv3 model with the tensorboard callback I am...
Read more >| notebook.community
Let's get acquainted with the TensorBoard Callback. ... INFO:tensorflow:Summary name conv2d_1/kernel:0 is illegal; using conv2d_1/kernel_0 instead.
Read more >tf.summary.text | TensorFlow v2.11.0
A name for this summary. The summary tag used for TensorBoard will be this name prefixed by any active name scopes. data, A...
Read more >Tensorboard Integration - fastai dev - fast.ai Course Forums
... otherwise you get warnings like this: Summary name /metrics/valid_loss is illegal; using metrics/valid_loss instead.
Read more >806541 – sci-libs/tensorflow-2.5.0-r1: won't ... - Gentoo's Bugzilla
Trying to load a model I get the following error: cpp_shape_inference_pb2. ... StringUnsafe WARNING: Use --illegal-access=warn to enable warnings of further ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
The same issue, sorted out by replacing variable.name with variable.name.replace(‘:’,‘_’)
The summary names do not like :
I am having also this issue. But I only get that when I am running on Jupyter notebook. I don’t see any of that while running from a .py script