-
Notifications
You must be signed in to change notification settings - Fork 160
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
[Feature] Updated with voxel observation mode. Added observation mode config supports #411
base: main
Are you sure you want to change the base?
Conversation
astonastonaston
commented
Jul 10, 2024
- Added the voxel observation mode allowing the convertion from RGBD sensor data to voxels.
- Updated docs with some explanations, examples, and visualized images
- Supported observation mode config so that observation hyper-parameters can be passed in during environment initializations
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great work so far and looks very thorough. Just a few comments
Now default voxelization configs are added. Voxelization can be done by just gym.make("PushCube-v1", obs_mode="voxel"). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lets limit the default voxel configs to just the tasks in the tabletop folder for now so remove the other defaults. We don't know what voxel settings are reasonable for the other tasks (and users won't use them probably). No default is better than possible errorneous default
Now the voxel obs config for non-tabletop tasks are removed. The demos' segmentation supports are modified a bit for better visualizations. |