-
-
Notifications
You must be signed in to change notification settings - Fork 19
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
Standard action space for DiscreteSpace #23
Comments
Hi @darsnack ! If we have a discrete space then the environment is not differentiable. Because in discrete space, we extract the index and pass it to |
I think logically, a discrete to continuous mapping would be |
Yeah right, it is dependent on environment. Ideally, I would like to keep an environment's discrete action space as it is and introduce a black box between model and |
Been thinking about this recently. Should we establish an experimental |
Currently, the DiscreteSpace is defined as
{1, ..., n}
(as it should be), but the lines inCartPole.jl
that map{1, 2} --> {-1, 1}
are commented out. Additionally, the assertion is commented out. Is there a reason for this? Someone has already written the code to transfer thestep!
logic to a{1, ..., n}
action space, so why aren't we using it?If there is a reason, can we settle what the standard action space should be?
The text was updated successfully, but these errors were encountered: