Baselines: what's the difference between the same game with different version : v0,...,v4

Created on 30 Aug 2018  Â·  4Comments  Â·  Source: openai/baselines

i find there are many versions of the same atari game,like PongNoFrameskip-v4 and so on.

what's the defference and where i can find the introduction?

question

Most helpful comment

We bump the version whenever there is a semantic change to the environment, no matter how slight. That means you can always trust that PongNoFrameskip-v3 has exactly the same semantics as the version used by some paper. That being said, you should consider all older versions to be deprecated and just use the most recent one — that is, you should think of older versions like a history that is accessible but not intended for normal use. Accordingly, we don't always document the difference between the versions, as you should always be using the most recent one except when reproing a historical result.

All 4 comments

Very good question (although more gym than baselines), had it myself more than once :) @christopherhesse @gdb @joschu who'd be the best person to route this to?

I don't know the answer to this, but there are some notes in the gym changelog for a couple of the v* suffixes: https://github.com/openai/gym#whats-new

We bump the version whenever there is a semantic change to the environment, no matter how slight. That means you can always trust that PongNoFrameskip-v3 has exactly the same semantics as the version used by some paper. That being said, you should consider all older versions to be deprecated and just use the most recent one — that is, you should think of older versions like a history that is accessible but not intended for normal use. Accordingly, we don't always document the difference between the versions, as you should always be using the most recent one except when reproing a historical result.

For Pong there's a nice video that makes the difference immediately clear: https://www.youtube.com/watch?v=zp72VTr730s

Was this page helpful?
0 / 5 - 0 ratings