feat(robot): default rollout actions to base frame - #576
Draft
ElmoPA wants to merge 1 commit into
Draft
Conversation
Contributor
Author
|
Warning This pull request is not mergeable via GitHub because a downstack PR is open. Once all requirements are satisfied, merge this PR as a stack on Graphite.
This stack of pull requests is managed by Graphite. Learn more about stacking. |
rollout_step assumed the policy emits CAM-frame actions and undid that with the extrinsics. That is right for a checkpoint trained through Eva.get_transform_list (cartesian -> camframe; cartesian_wristframe_ypr -> camframe -> wrist frame), but wrong for the fold pipeline, which applies no frame transform at all -- so the model already predicts absolute base-frame poses. Undoing an encoding that was never applied moves the arm smoothly to the wrong place with no error raised. action_frame=base is now the default; cam restores the previous path for the older checkpoints until those are refactored.
ElmoPA
force-pushed
the
rh/rollout-nodes
branch
from
August 17, 2026 04:40
b110f4e to
d6d3344
Compare
ElmoPA
force-pushed
the
rh/rollout-base-frame
branch
from
August 17, 2026 04:40
d7a2357 to
099b151
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.

rollout_step assumed the policy emits CAM-frame actions and undid that with the
extrinsics. That is right for a checkpoint trained through Eva.get_transform_list
(cartesian -> camframe; cartesian_wristframe_ypr -> camframe -> wrist frame), but
wrong for the fold pipeline, which applies no frame transform at all -- so the
model already predicts absolute base-frame poses. Undoing an encoding that was
never applied moves the arm smoothly to the wrong place with no error raised.
action_frame=base is now the default; cam restores the previous path for the
older checkpoints until those are refactored.