Open
Conversation
Contributor
Author
This stack of pull requests is managed by Graphite. Learn more about stacking. |
SimarKareer
approved these changes
Mar 4, 2026
aeb8955 to
b7d2cf6
Compare
SimarKareer
requested changes
Mar 8, 2026
| episode_feats = EvaHD5Extractor.process_episode( | ||
| episode_path=raw_path, | ||
| arm=arm, | ||
| extrinsics=extrinsics, |
Collaborator
There was a problem hiding this comment.
We no longer rely on extrinsics right?
Contributor
There was a problem hiding this comment.
Yes, I forgot to remove it.
| frames = [] | ||
| episode_feats = EvaHD5Extractor.process_episode( | ||
| episode_path, arm=arm, extrinsics=extrinsics, prestack=prestack | ||
| episode_path, arm=arm, extrinsics=extrinsics |
Collaborator
There was a problem hiding this comment.
still taking extrinsics?
| .float() | ||
| ) | ||
|
|
||
| if low_res: |
Collaborator
There was a problem hiding this comment.
If deleting this, then also delete the low_res arg
| ) | ||
| out[f"left.{base_key}"] = left_translation_quat | ||
| out[f"right.{base_key}"] = right_translation_quat | ||
| out["left.gripper"] = arr[:, 6:7] |
Collaborator
There was a problem hiding this comment.
Are we intentionally writing left.gripper both here and in the above if statement?
| _SPLIT_KEYS = {"obs_ee_pose", "cmd_ee_pose", "obs_joints", "cmd_joints"} | ||
|
|
||
| DATASET_KEY_MAPPINGS = { | ||
| "observations.state.eepose": "obs_ee_pose", |
Collaborator
There was a problem hiding this comment.
This says eepose, but in eva_utils the extractor it says ee_pose
episode_feats["observations"]["state.ee_pose"] = (
EvaHD5Extractor.get_ee_pose(
episode_feats["observations"]["state.joint_positions"],
arm,
left_extrinsics=left_extrinsics,
right_extrinsics=right_extrinsics,
no_rot=no_rot,
)
)
This seems like a pretty important bug?
SimarKareer
approved these changes
Mar 8, 2026
b7d2cf6 to
4e6faae
Compare
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.

No description provided.