AndyStrongBoy
AndyStrongBoy
hi, I met the same problem. Do you solve the problem? And how? I will appreciate it if answering
hi, when I run 'test_models.py', I met similar error: "RuntimeError: invalid argument 2: size '[-1 x 8 x 256]' is invalid for input with 768 elements at /opt/conda/conda-bld/pytorch_1518244421288/work/torch/lib/TH/THStorage.c:37" I have...
hi, I solve the problem by change line 143 code of 'test_models.py' "input_var = torch.autograd.Variable(data.view(-1, length, data.size(2), data.size(3)), volatile=True)" into "input_var = torch.autograd.Variable(data, volatile=True)", then it works fine, didn't occur...
hi, I meet the same problem, how do you solve it? Thank you!