How to define gymnasium multi discrete action space? #320
satyapravin
started this conversation in
General
Replies: 0 comments
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.
Uh oh!
There was an error while loading. Please reload this page.
-
When I define my action spec as follows:
` template static decltype(auto) ActionSpec(const Config& conf) {
int spread_min = 0;
int spread_max = 10;
}
`
And use stablebaselines3 it doesn't translate into multi discrete action space but rather uses a Gaussian dist policy. How do I ensure that it uses a categorical distribution instead?
Beta Was this translation helpful? Give feedback.
All reactions