tensorboardX icon indicating copy to clipboard operation
tensorboardX copied to clipboard

tensorboard for pytorch (and chainer, mxnet, numpy, ...)

Results 93 tensorboardX issues
Sort by recently updated
recently updated
newest added

Bumps [numpy](https://github.com/numpy/numpy) from 1.21.0 to 1.22.0. Release notes Sourced from numpy's releases. v1.22.0 NumPy 1.22.0 Release Notes NumPy 1.22.0 is a big release featuring the work of 153 contributors spread...

dependencies

Today when there are NaN or Inf values, it draw as 0. In Tensorboard, NaN or Inf are draw as Triangle [Link](https://github.com/tensorflow/tensorboard/pull/4461) I wish to help but don't know where....

Hi, I used the following command on Google colab to generate a url, but the generated address cannot be reached. Thank you for your help! `!tensorboard --bind_all --logdir runs`

```python import torch from torch import nn import torch.nn.functional as F from torchvision import utils import numpy as np from tensorboardX import SummaryWriter class Net(nn.Module): def __init__(self): super(Net, self).__init__() self.conv1...

bug

Hey guys, great work on developing this repo! It's quite popular and apparently trusted by many people given the number of stars. I have one important question. Why should one...

When I'm using Add_ Graph, This error has occurred in the system `import torch import torch.nn as nn from tensorboardX import SummaryWriter class LeNet(nn.Module): def __init__(self): super(LeNet, self).__init__() self.conv1 =...

I have no idea about the following error, looking forward to someone's help, thank you! ~~ ``` Traceback (most recent call last): File "disfluency_detection/pipelines/sentseg_train.py", line 427, in main() File "disfluency_detection/pipelines/sentseg_train.py",...

I'd like to log an entire array to tensorboard. This is supported by https://tensorboardx.readthedocs.io/en/latest/tensorboard.html#tensorboardX.SummaryWriter.add_scalar but is not exposed by `tensorboardX`. Can you please expose this functionality? The workaround of invoking...

When I use add_mesh() many times with tag='train/mesh', I can't click the blue bar to change the mesh shown on the page.

Is this possible in TensorboardX? I have only used Pytorch's SummaryWriter. [Their solution](https://stackoverflow.com/a/57599771/7829241) is to use `add_scalars` but this creates multiple "runs" with different colors. Ideally these combined scalars would...