Conversation
New package mujoco_emdb_sim bridging emdb_simulator (SantaCRC's RoboCasa/
robosuite KitchenLift sim) to the e-MDB architecture:
- sim_bridge: hosts executed_action/world_reset, forwards to scene_loader's
/step_action + /reset_episode
- EmdbSimulatorPerception: flattens ObjectStateArray + scalar mdb sensors
- perception_relay: TEMPORARY keep-alive for scene_loader's one-shot rl-mode
perceptions (remove once the sim streams them)
Adds lift_experiment.yaml + lift_launch.py (PolicyLearned/SAC on the lift task)
and the ur5_grasp experiment config/launch.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
- EmdbSimulatorPerception: pass base Perception args by keyword (latest inserted
a node_type param, which broke the positional super().__init__ call).
- sim_bridge: ignore control-topic "reset_world" when the world_reset service is
hosted, so two callbacks don't drive the shared reset ServiceClient concurrently
("generator already executing").
Verified end-to-end on latest: single clean architecture, perceptions flow,
world model learns, actions are selected.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
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.
New
mujoco_emdb_simpackage bridging SantaCRC's RoboCasa/robosuite KitchenLiftsim to the e-MDB architecture:
/step_action + /reset_episode
perceptions (remove once scene_loader streams them)
Also adds lift_experiment.yaml + lift_launch.py (PolicyLearned/SAC on the lift
task) and the ur5_grasp experiment config/launch.
Verified running end-to-end on
latest: single clean architecture, perceptionsflow, world model learns, actions are selected.