Hi, I am running a dozen of model with different architecture in google colab and save the logs file to my google drive folder. Now I would like to use TensorBoard to visualize the accuracy and loss of the models, but I can’t call it from my google drive folder
According to sample provided by Tensorflow (Google Colab). The code is shown below:
%tensorboard --logdir logs
But I saved the logs in my google drive in case of losing them when colab collapsed or interrupted.
I tried the following code but it is still not working
%tensorboard --logdir content/drive/MyDrive/CNN/logs
%tensorboard --logdir ‘content/drive/MyDrive/CNN/logs’
Hope someone can help me on this issue