fix(processor): add gripper_vel in MapDeltaActionToRobotActionStep

This commit is contained in:
Steven Palma
2026-07-27 14:02:08 +02:00
parent 78b12fb77c
commit be286fc853
@@ -136,7 +136,16 @@ class MapDeltaActionToRobotActionStep(RobotActionProcessorStep):
features[PipelineFeatureType.ACTION].pop(f"delta_{axis}", None)
features[PipelineFeatureType.ACTION].pop("gripper", None)
for feat in ["enabled", "target_x", "target_y", "target_z", "target_wx", "target_wy", "target_wz"]:
for feat in [
"enabled",
"target_x",
"target_y",
"target_z",
"target_wx",
"target_wy",
"target_wz",
"gripper_vel",
]:
features[PipelineFeatureType.ACTION][f"{feat}"] = PolicyFeature(
type=FeatureType.ACTION, shape=(1,)
)