Search code examples
pythontensorflowtensorboard

While running tensorboard command and i am getting error?


!tensorboard --logdir=drive/My Drive/Proj/fer/checkpoint/logs/

**i am running this command in google colab **

getting this error


Solution

  • You get this error because of the empty space in 'My Drive'. So you need to escape the whitespace or rename it:

    !tensorboard --logdir=drive/My\ Drive/Proj/fer/checkpoint/logs/