How do I use the Tensorboard callback of Keras?
keras.callbacks.TensorBoard(log_dir=”./Graph”, histogram_freq=0, write_graph=True, write_images=True) This line creates a Callback Tensorboard object, you should capture that object and give it to the fit function of your model. tbCallBack = keras.callbacks.TensorBoard(log_dir=”./Graph”, histogram_freq=0, write_graph=True, write_images=True) … model.fit(…inputs and parameters…, callbacks=[tbCallBack]) This way you gave your callback object to the function. It will be run during the training and … Read more