Add MicroAGI embodiment and data configs:#496
Draft
ElmoPA wants to merge 2 commits into
Draft
Conversation
added 2 commits
June 11, 2026 21:08
- Microagi Human-sibling embodiment with keymaps, transform list,
intrinsics fallback, MediaPipe / MANO keypoint connectivity
-microagi_bimanual / right_arm / left_arm embodiment IDs + hydra data/viz configs
- CONTRIBUTING_DATA.md embodiment table updates
Co-authored-by: Aristotelis-Sib <aristotelis98@gmail.com>
The evaluator/viz configs (keypoints.yaml, keypoints_wrist.yaml) specify image_key as a flat name like 'front_img_1' because they were written for the trainer's EvalVideo path, where HPT flattens dotted batch keys to their last segment before viz. viz_language operates on raw dataloader batches, where the same image is keyed 'observations.images.front_img_1', so those configs raised KeyError on every batch and produced zero videos. Resolve a missing image_key by matching batch keys on their last dotted segment — the inverse of HPT's flattening. Only the image key is resolved (wholesale flattening would collide, e.g. left/right.obs_keypoints), and only when the exact key is absent, so configs using full dotted keys (cotrain_lang.yaml) are unaffected.
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.

Add MicroAGI embodiment and data configs:
intrinsics fallback, MediaPipe / MANO keypoint connectivity
-microagi_bimanual / right_arm / left_arm embodiment IDs + hydra data/viz configs
Co-authored-by: Aristotelis-Sib aristotelis98@gmail.com
viz_language: resolve short image keys against dotted batch keys
The evaluator/viz configs (keypoints.yaml, keypoints_wrist.yaml) specify
image_key as a flat name like 'front_img_1' because they were written for
the trainer's EvalVideo path, where HPT flattens dotted batch keys to
their last segment before viz. viz_language operates on raw dataloader
batches, where the same image is keyed 'observations.images.front_img_1',
so those configs raised KeyError on every batch and produced zero videos.
Resolve a missing image_key by matching batch keys on their last dotted
segment — the inverse of HPT's flattening. Only the image key is resolved
(wholesale flattening would collide, e.g. left/right.obs_keypoints), and
only when the exact key is absent, so configs using full dotted keys
(cotrain_lang.yaml) are unaffected.