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
I'm trying to customize a multi-drone RL environment with a discrete action space - specifically, drones can only fly in some certain directions in a fixed velocity - and I failed to find the way to define a discrete action space, nor can I find an example in the doc on branch master.
Is there any solution to build a discrete action space based on BaseRLAviary?
The text was updated successfully, but these errors were encountered:
for your use case, I would build on top of VelocityAviary, where the input is a 4 dimensional vector (a reference direction + a reference magnitude speed) and look into Farama's docs to replace the Box (n-array/tensor) input for a Discrete one https://gymnasium.farama.org/api/spaces/
I'm trying to customize a multi-drone RL environment with a discrete action space - specifically, drones can only fly in some certain directions in a fixed velocity - and I failed to find the way to define a discrete action space, nor can I find an example in the doc on branch master.
Is there any solution to build a discrete action space based on BaseRLAviary?
The text was updated successfully, but these errors were encountered: