I am trying to log a simple example to try to make the plugin work. I'm trying to show a simple black and white 3D image.
Here is the code:
from torch.utils.tensorboard import SummaryWriter
from monai.visualize import plot_2d_or_3d_image
writer = SummaryWriter(log_dir)
plot_2d_or_3d_image(faults_data, 0, writer, tag='Faults')
writer.close()
My faults data is of this shape, as from the documentation from MONAI (N,C,W,H,D)
(1, 1, 128, 128, 128)
Then, when I open tensorboard, I can only see the gif file on Image section (defualt from MONAI), and can never see the Tensorboard 3D tab. I've tried re-running the tensorboarding, and still nothing:
My tensorboard and tensorboard-plugin-3d versions are the latest:
I am trying to log a simple example to try to make the plugin work. I'm trying to show a simple black and white 3D image.
Here is the code:
My faults data is of this shape, as from the documentation from MONAI (N,C,W,H,D)
Then, when I open tensorboard, I can only see the gif file on Image section (defualt from MONAI), and can never see the Tensorboard 3D tab. I've tried re-running the tensorboarding, and still nothing:
My tensorboard and tensorboard-plugin-3d versions are the latest:
Any idea on how to get it working?