async-rl
async-rl copied to clipboard
ValueError: Filter must not be larger than the input: Filter: (8, 8) Input: (4, 84)
Hello, I install all dependencies and run the first train command python async_dqn.py --experiment breakout --game "Breakout-v0" --num_concurrent 8
, but it come out an error. It seems that the input size (4,84) is wrong?
I got this error when I was running tensorflow version 10, upgrading to 11 fixed it.
vim ~/.keras/keras.json and change 'tf' to 'th', it will solve this problem.
@LinZichuan Thanks, it works for me.