How do I use the Tensorboard callback of Keras?
I have built a neural network with Keras. I would visualize its data by Tensorboard, therefore I have utilized: keras.callbacks.TensorBoard(log_dir='/Graph', histogram_freq=0, write_graph=True, write_images=True) as explained in keras.io . When I run the callback I get <keras.callbacks.TensorBoard at 0x7f9abb3898> , but I don't get any file in my folder "Graph". Is there something wrong in how I have used this callback? Nassim Ben keras.callbacks.TensorBoard(log_dir='./Graph', histogram_freq=0, write_graph=True, write_images=True) This line creates a Callback Tensorboard object, you should