You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
--------------------------------------------------------------------------
ModuleNotFoundError Traceback (most recent call last)
/opt/conda/lib/python3.6/site-packages/torch/utils/tensorboard/__init__.py in <module>
1 try:
----> 2 from tensorboard.summary.writer.record_writer import RecordWriter # noqa F401
3 except ImportError:
ModuleNotFoundError: No module named 'tensorboard.summary.writer'
During handling of the above exception, another exception occurred:
ImportError Traceback (most recent call last)
<ipython-input-24-b61a87f36f9b> in <module>
1 import torch
----> 2 from torch.utils import tensorboard
/opt/conda/lib/python3.6/site-packages/torch/utils/tensorboard/__init__.py in <module>
2 from tensorboard.summary.writer.record_writer import RecordWriter # noqa F401
3 except ImportError:
----> 4 raise ImportError('TensorBoard logging requires TensorBoard with Python summary writer installed. '
5 'This should be available in 1.14 or above.')
6 from .writer import FileWriter, SummaryWriter # noqa F401
ImportError: TensorBoard logging requires TensorBoard with Python summary writer installed. This should be available in 1.14 or above.
Tensorboard isn't explicitly installed, and, oddly, the tensorboard module doesn't have a __version__ property, but you can find it by running
from tensorboard import version
print(version.VERSION)
1.13.1
It would be great to get that version bumped, although it looks like doing so might be a bit complicated.
The text was updated successfully, but these errors were encountered:
Our latest build includes the version 1.14 of tensorboard. This build hasn't been released to Kaggle Kernels yet. This change should be part of next week release.
Running on a GPU instance:
gives this error:
Tensorboard isn't explicitly installed, and, oddly, the tensorboard module doesn't have a
__version__
property, but you can find it by runningIt would be great to get that version bumped, although it looks like doing so might be a bit complicated.
The text was updated successfully, but these errors were encountered: