Tzu-Wei Huang

Results 104 comments of Tzu-Wei Huang

@DrraBL Can you try whether pip install `git+https://github.com/lanpa/tensorboardX` helps?

https://github.com/pytorch/pytorch/issues/32651#issuecomment-579621209

Hi, how many events did you write? If there are not enough events, they will not be flushed to the disk.

Thanks for the report. The code path (of tensorboardX) for v0.3 and v0.4 are different. As for code you used, v0.3 or v0.3.1 should use onnx export as a buffer...

@filipeabperes Do you mean 24a0d77?

I replaced `w.add_graph(DummyModule(), x, verbose=True)` with `torch.onnx.export(DummyModule(), x, "./IndexLayer.pb", verbose=True)` In pytorch v0.4, I got a same error message. ``` ... getTracingState: Assertion `state` failed. ``` In pytorch v0.3.1, it...

Looks like this PR implements slice. https://github.com/pytorch/pytorch/pull/5204

Tested with 0.4.0a0+063946d and still the same. I modified the module to: ``` python class DummyModule(torch.nn.Module): def __init__(self): super(DummyModule, self).__init__() self.V = torch.nn.Parameter(torch.Tensor(2, 2)) def forward(self, x): self.V[0, 0] =...

update: still not working in pytorch 0.4 release + tensorboardX master. output of tensorboardX: ``` Error occurs, No graph saved Checking if it's onnx problem... Your model fails onnx too,...

@sgarcia22 How can numpy array cause this error?