How to use Tensorboard with Keras?
I'm using Keras 2.0 with a TensorFlow backend. I don't use model.fit() function, so I can't use callbacks provided by Keras.
Is there any way I can visualize my graph in Tensorboard?
I'm using Keras 2.0 with a TensorFlow backend. I don't use model.fit() function, so I can't use callbacks provided by Keras.
Is there any way I can visualize my graph in Tensorboard?
Yea, you can use Tensorboard without Keras fit function. It just helps you to visualize your data very easily but does not require you to use the fit function.
You can take a look at this solution