Description
Consider Stack Overflow for getting support using TensorBoard—they have
a larger community with better searchability:
https://stackoverflow.com/questions/tagged/tensorboard
Do not use this template for for setup, installation, or configuration
issues. Instead, use the “installation problem” issue template:
https://github.com/tensorflow/tensorboard/issues/new?template=installation_problem.md
To report a problem with TensorBoard itself, please fill out the
remainder of this template.
Environment information (required)
Chrome version 80.0.3987.132
tensorflow version 2.1.0
tensorboard version 2.1.0
## Issue description
I create a customized model, and when I use callback in model.fit function, I found the graph tap shows that failed normalizing names and there is no profile tab.
Could you help me solve this problem?
The code is shown below
afm_model = AFM(**pnn_params)
model = afm_model.model
check_path = './model_save/AFM/model.ckpt'
callback = [
tf.keras.callbacks.TensorBoard(log_dir='./logs/AFM',histogram_freq=5000,
write_graph=True, write_images=False,
embeddings_freq=0, embeddings_layer_names=None,
embeddings_metadata=None, embeddings_data=None, update_freq=500,profile_batch=10),
tf.keras.callbacks.ModelCheckpoint(check_path,save_weights_only=True,verbose=1,save_freq=10000)
]
model.fit([Xi_train,Xv_train,y_train],y_train, validation_data = ([Xi_test,Xv_test,ids_test],ids_test), epochs=5, batch_size=pnn_params['batch_size'], callbacks = callback, shuffle=True)