DDPAE-video-prediction
DDPAE-video-prediction copied to clipboard
possibly a bug?
in pose_rnn.py, L80:
#h = torch.cat([hidden[0][0:1], hidden[0][1:]], dim=2)
#c = torch.cat([hidden[1][0:1], hidden[1][1:]], dim=2)
# these 2 lines throw a dim error, is it supposed to be:
h = hidden[0]
c = hidden[1]
I met the same problem. Did you solved the bug?
yes, as i have already posted, use h = hidden[0], c = hidden[1]
thanks!
Thanks a lot. Just tried the code and wondering if this is a bug.
Thanks, same problem. Have you got reasonable results after changing the code?