mimicgen generated data#135
Merged
Merged
Conversation
…lit. Co-authored-by: Cursor <cursoragent@cursor.com>
wilsonchenghy
approved these changes
Jul 18, 2026
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.
Adds a data-generation pipeline on top of the existing pick-place task: cuRobo plans a handful of seed demos, we annotate where the grasp completes, and Isaac Lab Mimic scales them into a larger imitation-learning dataset.
Files changed
New — the pipeline
pick_place_bimanual_mimic_env.py — the Mimic env (Isaac-PickPlace-BimanualLeft-Mimic-v0): scene, grasp→place subtask definitions, and Mimic datagen config. Registered under a separate id; doesn't touch the base env.
pick_place_gen/record_mimic_source_demos.py — records the cuRobo-planned seed demos into the HDF5 format Mimic consumes.
pick_place_gen/run_isaaclab_mimic_script.py — thin wrapper so Isaac Lab's stock annotate_demos.py generate_dataset.py can find this custom task.
pick_place_gen/MIMIC_DATASET.md — dataset schema, how to train on it, and how to regenerate.
New MDP terms (used only by the Mimic env)
mdp/terminations.py — object_placed_success, the place-success check. New file; not referenced by the base task.
mdp/observations.py — adds object_grasped (grasp-complete signal for the annotation step). New function appended; existing observations unchanged.
Wiring (additive)
config/HumanoidRLEnv/init.py — registers the new …-Mimic-v0 id. Base id and its registration untouched.
pick_place_env_cfg.py — adds place_target: RigidObjectCfg = None to the scene cfg. Defaults to None, so the base task ignores it; only the Mimic cfg populates it.
mdp/init.py — exports the new terminations module.
robot_cfg_shim.py — imports compute_tip_ik_jacobian from the shared arm config.