Reputation: 11
Loading the TensorBoard notebook extension fails suddenly.
Following the Colab example: https://colab.research.google.com/github/tensorflow/tensorboard/blob/master/docs/r2/tensorboard_in_notebooks.ipynb
Tried restarting the runtime, had no effect.
!pip install -q tf-nightly-2.0-preview
# Load the TensorBoard notebook extension
%load_ext tensorboard
Actual result:
The tensorboard module is not an IPython extension.
I can't even find any other reference to this error return.
Upvotes: 1
Views: 3154
Reputation: 41
Use %load_ext tensorboard.notebook
instead. This will work. It is an already raised Issue on gitHub.
Upvotes: 4