-
Notifications
You must be signed in to change notification settings - Fork 148
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
compress frames #117
Comments
Basically, you have to change the Atari class. mushroom-rl/mushroom_rl/environments/atari.py Line 111 in 0359512
mushroom-rl/mushroom_rl/environments/atari.py Line 136 in 0359512
And substitute the LazyFrame with your compressed frame. This should be enough.
Basically, you need to produce an alternative class to LazyFrames: mushroom-rl/mushroom_rl/utils/frames.py Lines 7 to 36 in 0359512
|
I did it, if you are interested I modified LazyFrames:
|
Is your feature request related to a problem? Please describe.
I would like to reduce the memory taken by RL with atari, so I can run many experiments at the same time.
Describe the solution you'd like
compress the frames, for example in rllib they use LZ4 compression. This is different from the lazyframes
if I want to implement this by myself, where should I make the change?
The text was updated successfully, but these errors were encountered: