Is there any way to use TensorBoard when training a TensorFlow model on Google Colab?
Yes definitely, using tensorboard in google colab is quite easy. Follow the following steps-
1) Load the tensorboard extension
%load_ext tensorboard.notebook
2) Add it to keras callback
tensorboard_callback = tf.keras.callbacks.TensorBoard(logdir, histogram_freq=1)
3) Start tensorboard
%tensorboard — logdir logs
Hope it helps.