Flappy-bird-deep-Q-learning-pytorch
Flappy-bird-deep-Q-learning-pytorch copied to clipboard
Change in code after pytorch upgrade
HI,
on line 74:
action = torch.argmax(prediction)[0]
should be:
action = torch.argmax(prediction)
after that the code ran