-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
framestack #2
Comments
That's right - it should be pretty easy to add though if you wanted to try it! I think I briefly tried some other games, but unfortunately didn't record the details. |
Thanks for the reply. I am planning to rewrite your implementation to learn about ppo so I would try adding frame-stacking, however I was wondering is there any reason that you didn't add frame-stacking? Does it help with the learning in a specific way? Does is hinder the learning process? |
Frame-stacking is generally understood to be important for making games more markovian - meaning that the true state of the game is fully represented by the input to the model. Eg in Pong from a single frame, you can't tell the direction the ball is moving - but from a stack of 4 frames you can. Honestly I think I just forgot to add it here - and in Pong it's probably not too important because a policy of "keep the paddle in front of the ball" works decently even if you don't know which way the ball is moving. |
Hello.
Thanks for sharing this repo.
It seems that you have not used the frame stacking(using 3 or 4 consecutive frames as state) in the Atari environment. Is that correct?
I also was wondering that have you test it in other Atari games?
The text was updated successfully, but these errors were encountered: