Remove custom FlexDict and Repeated spaces for Gymnasium Dict and Sequence spaces - #58972
Draft
pseudo-rnd-thoughts wants to merge 2 commits into
Draft
Remove custom FlexDict and Repeated spaces for Gymnasium Dict and Sequence spaces#58972pseudo-rnd-thoughts wants to merge 2 commits into
FlexDict and Repeated spaces for Gymnasium Dict and Sequence spaces#58972pseudo-rnd-thoughts wants to merge 2 commits into
Conversation
added 2 commits
November 13, 2025 10:43
…nd `Sequence` spaces Signed-off-by: Mark Towers <mark@anyscale.com>
# Conflicts: # rllib/utils/spaces/space_utils.py
|
This pull request has been automatically marked as stale because it has not had You can always ask for help on our discussion forum or Ray's public slack channel. If you'd like to keep this open, just leave any comment, and the stale label will be removed. |
|
This pull request has been automatically closed because there has been no more activity in the 14 days Please feel free to reopen or open a new pull request if you'd still like this to be addressed. Again, you can always ask for help on our discussion forum or Ray's public slack channel. Thanks again for your contribution! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
RLlib has three custom spaces
FlexDict,RepeatedandSimplex. These are historic artifacts of RLlib IMO with Gymnasium now providing equivalent spaces withDictforFlexDictandSequenceforRepeated.I haven't removed
Simplexas an equivalent space within Gymnasium doesn't exist but I don't believe there is any testing of if this space works in RLlib stack currently.