Hi all,
I would like to display my TensorBoard (TB) tab for a run through the integration outlined in the wandb docs for TensorBoard.
I am using PyTorch (Geometric) and all is going well, except for the fact that no TB tab appears as in the example from the guide. What I have tried:
- Use sync_tensorboard=True in wandb.init. Later on create some SummaryWriter. Indeed my tfevents appear nicely in the files section as in your example run. However, no TB tab appears.
- Explicitly specify wandb.tensorboard.patch(tensorboard_x=False, pytorch=True) with some rootdir. Do not specify sync_tensorboard=True in wandb.init. Later on create a SummaryWrtier. Again, tfevents appear in Files but no TB tab.
Does anyone have advice for how to force the TB tab to appear?