GR-RL: How a Robot Mastered Shoelacing | Dexterous & Precise Long-Horizon Manipulation

Опубликовано: 19 Июнь 2026
на канале: Foundation Models For Robotics
102
2

We are diving into GR-RL, a powerful robotic learning framework from ByteDance Seed designed to transform generalist Vision-Language-Action (VLA) policies into highly capable specialists for long-horizon, dexterous manipulation. GR-RL successfully tackles the immensely complex task of autonomously lacing a shoe, achieving an impressive **83.3% success rate**—a landmark for learning-based methods.

Generalist VLA policies often fail at tasks demanding millimeter-level precision and interaction with deformable objects (like shoelaces) because they are typically trained on noisy and suboptimal human demonstrations. Human teleoperators hesitate, make small corrections, and introduce noisy actions that, if blindly cloned, lead to sub-optimal performance. Furthermore, a mismatch exists between the policy's raw training actions and the smoothed, optimized actions executed during robot deployment.

GR-RL solves these bottlenecks using a sophisticated three-stage, reinforcement-augmented training pipeline:

*Stage 1: Offline Data Filtering with Learned Task Progress*
GR-RL initializes its base VLA policy (a Mixture-of-Transformer architecture with 5B parameters, built upon GR-3 and utilizing Qwen2.5-VL-3B-Instruct) by cloning only high-quality, filtered trajectories.
*The Evaluator:* A multi-task distributional critic ($Q_{\phi}$) is trained using offline reinforcement learning (RL) and a sparse reward (a reward of 1 only upon complete success).
*Precision Signal:* The resulting $Q$-values naturally reflect the task progress, functioning as a robust task progress evaluator. The distributional critic is crucial here, as it is bounded (between 0 and 1) and avoids the severe overestimation problems suffered by non-distributional critics in sparse reward settings, accurately registering subtle dips in progress caused by human mistakes.
*Filtering:* Transitions where the predicted progress drops below a threshold (indicating suboptimal or hesitant behavior) are discarded, ensuring the policy learns only from positive-contributing data.

*Stage 2: Morphological Symmetry Augmentation*
To greatly improve generalization and robustness, GR-RL leverages the symmetry inherent in bimanual tasks.
*Augmentation Process:* Image observations are horizontally flipped, left and right wrist camera feeds are swapped, robot states and actions are mirrored in the world frame, and language instructions are flipped accordingly (e.g., "left" becomes "right"). This effectively doubles training diversity without requiring new human data.

*Stage 3: Online Steering for Policy Deployment Alignment*
To mitigate the training-to-deployment mismatch caused by system-level post-smoothing, GR-RL performs online RL.
*Structured Exploration:* Instead of adding random physical noise (which is ineffective for millimeter-precision tasks), structured exploration is performed in a latent space by training a lightweight noise predictor ($\pi_{\theta'}$).
*Alignment:* This predictor learns to generate targeted steering signals that compensate for the smoothing drift, nudging the action diffusion transformer towards high-return regions in closed-loop interaction with the real world.

The results show that each stage is critical: Data filtering alone boosted the success rate from 45.7% (Baseline GR-3) to 61.6%, augmentation further increased it to 72.7%, and online steering pushed it to the final 83.3%.

GR-RL demonstrated remarkable robustness on the ByteMini-v2 robot system. It learned proactive behaviors, including automatically re-attempting when missing an eyelet, reorienting the shoe if positioned badly, and performing multi-step intentional re-grasping on the shoe surface to secure a better grip closer to the shoelace tip. This framework represents a significant step towards developing generalist robot foundation models into reliable, real-world specialist experts.

---
*Tags:*
GR-RL, Robotic Manipulation, Dexterous Manipulation, Shoe-lacing, Robot Learning, Reinforcement Learning, VLA, Vision Language Action, Offline RL, Online RL, Data Filtering, Morphological Symmetry, Precision Control, Long Horizon Task, ByteMini-v2, ByteDance Seed, GR-3, AI Robotics, Foundation Models, Distributional Critic, Real World RL, Autonomous Robots, Action Diffusion Transformer