You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When setting frame_skip=1 in the AtariPreprocessing, we will always have t=1 in the step function (line 475 of atari_lib.py). And so, self.screen_buffer[0] never gets updated.
Now considering the _pool_and_resize when frame_skip is one, transformed_image is exactly the resized self.screen_buffer[0], and so, it will never change in the entire episode.
The text was updated successfully, but these errors were encountered:
When setting
frame_skip=1
in theAtariPreprocessing
, we will always havet=1
in the step function (line 475 ofatari_lib.py
). And so,self.screen_buffer[0]
never gets updated.Now considering the
_pool_and_resize
whenframe_skip
is one,transformed_image
is exactly the resizedself.screen_buffer[0]
, and so, it will never change in the entire episode.The text was updated successfully, but these errors were encountered: