Filipe de Avila Belbute Peres

Results 34 comments of Filipe de Avila Belbute Peres

In Pytorch 0.3.1 this does not seem to be a problem, with the output being: ``` Variable containing: 3 [torch.FloatTensor of size 1] /Users/filiped/anaconda/lib/python3.6/site-packages/torch/onnx/__init__.py:244: UserWarning: ONNX export failed on Constant...

@lanpa the results in Pytorch 0.3.1 that I reported above were already with the patched pulled in

@lanpa Yeah, I just re-pulled from the repo and ran the example to test, with same results as above

Maybe related, I have noticed a similar issue in 0.3.1 when using slices. Example below: ``` import torch from torch.autograd import Variable from tensorboardX import SummaryWriter class DummyModule(torch.nn.Module): def forward(self,...

That was only merged into 0.4, right? I just tested and it doesn't seem to fix the 0.4 problem.

Has someone reported this to ONNX team? I'm currently busy now but could do it in a couple weeks if not.

Is this really fixed? By running the following code, I get ``` import torch from tensorboardX import SummaryWriter class DummyModule(torch.nn.Module): def forward(self, x): V = torch.zeros(2, 2) V[0, 0] =...

There are many modified files that are not related to updating to the current torch version, could you remove those and submit only the ones related to changing the lu...

Hi, thanks for the interest. I plan releasing a good set of updates to the code over the next weeks, together with a paper we are presenting at NIPS this...

I had introduced a small bug on the inference script, should be fixed right now. (Currently testing here.)