Open striving19 opened 10 months ago
It is possible to add one, but it would have to be added to action.py so you can specify what the parts of the action space (space() method) are and how they affect the environment dynamics (act(action) method).
For inspiration, you can take a look at the MultiAgentAction which kind of a hybrid space made of a tuple of several subspaces (here it's assumed to be the same atomic space repeated for each agent, but you can change that)
Hi! Is it possible to add a hybrid action space to highwayenv like Parameterized DQN?