RescaleAction: how to get the unscaled value after env.step? #1394
Unanswered
glitchyordis
asked this question in
Q&A
Replies: 2 comments 1 reply
-
|
You shouldn't need the rescaled actions. |
Beta Was this translation helpful? Give feedback.
1 reply
-
|
The purpose of the RescaleAction wrapper is for you to rescale actions from one space to another through linearly projecting the values |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
My environment's action space has a dim of (4,), each with a different range of values. I'm told PPO are usually train with action ranging between -1 and 1. If I wrap the env with
RescaleAction, how do I get the actual value instead of the one scaled between -1 and 1 after performingenv.step()?Beta Was this translation helpful? Give feedback.
All reactions