RLDX-1 Technical Report
- 01Functional Capabilities Are the Real Deployment Bottleneck, Not General Intelligence
- 02Multi-Modal Sensing Is Not Optional for Contact-Rich Tasks
- 03Synthetic Data Quality Filtering Is Now a Competitive Moat
- 04Inference Latency Is a First-Class Engineering Problem for Physical AI
- 05Three-Stage Training Architecture Enables Scalable Embodiment Specialization
TL;DR: A Korean AI/robotics lab (RLWRLD + KAIST) built a humanoid manipulation policy that roughly doubles the performance of Physical AI's current frontier models (π₀.₅, GR00T N1.6) on tasks requiring motion awareness, long-term memory, and physical sensing. The architectural innovations and data pipeline are immediately relevant to anyone deploying robots in dynamic, contact-rich environments.
1. Key Themes
Functional Capabilities Are the Real Deployment Bottleneck, Not General Intelligence
The paper's core argument is that current VLAs (including π₀.₅ and GR00T N1.6) have hit a ceiling on "versatile intelligence" — scene understanding and language following — but fail catastrophically when tasks require motion perception, memory, or physical sensing. This is the operational gap between demos and production.
The numbers are stark: on the ALLEX humanoid benchmark covering these functional tasks, "RLDX-1 shows superiority in ALLEX humanoid tasks by achieving success rates of 86.8% while π₀.₅ and GR00T N1.6 achieve around 40%" (Abstract). On the Object-in-Box Selection task requiring long-term memory, GR00T N1.6 performs at 29.2% (random selection) and π₀.₅ at 33.3% (always picks same box), while RLDX-1 achieves 91.7% (Section 6.3).
Multi-Modal Sensing Is Not Optional for Contact-Rich Tasks
The paper provides hard evidence that vision-only policies break down at the physical contact boundary. On Plug Insertion (fully occluded from camera), π₀.₅ and GR00T N1.6 achieve 20.8% and 16.7%, while RLDX-1 with tactile/torque sensing achieves 33.3%. On Egg Pick-and-Place requiring grasp force control, "models without tactile sensing often fail even when the gripper reaches a proper grasping position, because the grasping force is insufficient to securely hold the object" (Section 6.4). The paper integrates AnySkin tactile sensors and joint torque feedback as first-class model inputs — not post-hoc corrections.
Synthetic Data Quality Filtering Is Now a Competitive Moat
Raw video generation for robotics produces junk. RLDX-1's innovation is a two-stage filtering pipeline: video quality filtering (VLM judges instruction-following and trajectory plausibility) plus motion-consistency filtering (replay IDM-predicted actions in simulator, compare rollout against synthetic video using a learned V-JEPA2-based classifier). The payoff: synthetic data alone improves GR-1 Tabletop success rate from 41.0% (real data only) to 50.1% (100% synthetic augmentation added), a 9.1% absolute gain (Section 6.5, Table 3). This suggests synthetic data, if filtered correctly, can close embodiment data gaps at scale.
Inference Latency Is a First-Class Engineering Problem for Physical AI
Most academic VLA papers ignore deployment latency. RLDX-1 treats it as a core constraint. Under standard PyTorch Eager, RLDX-1 runs at 71.2ms per step on an RTX 5090 — too slow for dynamic manipulation tasks like conveyor belt pick-and-place. Through static graph conversion (eliminating CUDA Graph fragmentation) and custom hand-fused kernels (replacing Torch Compile's incomplete fusion), they reduce latency to 43.7ms, a 1.63× speedup (Section 1, Inference Strategy). The paper explicitly states: "high inference latency causes the scene to change between observation and action execution, leading to a mismatch between the observed state and the action moment" (Section 5).
Three-Stage Training Architecture Enables Scalable Embodiment Specialization
The pre-train → mid-train → post-train pipeline is a deployable blueprint, not just an academic ablation. Pre-training on 1.5M episodes across single-arm, dual-arm, and humanoid establishes cross-embodiment priors. Mid-training (25K steps, 15 hours on 64 H200s) injects embodiment-specific sensors and functional modules. Post-training adds RL refinement for hard tasks. Critically, mid-training uses only 72K synthetic + in-house ALLEX episodes to produce a 48-DoF humanoid policy that doubles frontier model performance — demonstrating that the architecture, not data volume, is the binding constraint at this stage.
2. Contrarian Perspectives
Bigger VLM Backbones Are Not the Answer — Intermediate Features Are What Matter
The conventional wisdom in robotics foundation models is to use the largest, most capable VLM backbone and extract features from the final layer. RLDX-1 directly challenges this. Their ablation shows that extracting features from Layer 18 (intermediate) achieves 60.9% on RoboCasa Kitchen, versus 56.3% from Layer 28 (near-final) — a meaningful regression. "Earlier layers lack sufficient semantics and later layers may become less aligned with fine-grained visual details required for manipulation" (Section 6.5). This has direct implications: companies spending on larger LLM backbones for action generation may be solving the wrong problem.
RL on Top of Imitation Learning Requires a Better Critic, Not More Data
Most robotics RL approaches use newly initialized prediction heads for value estimation (the approach taken by π₀.₅/RECAP and others). RLDX-1 argues this causes distributional mismatch on target-domain tasks. Their text-based VLM critic instead "predicts an unnormalized integer value as text given the current observation, task instruction, and discretized state," directly reusing the VLM's native text-prediction interface (Section 4.3). The result: "reliable value estimation from limited data and efficient adaptation to new target-domain tasks" (Section 4.3). The Figure 8 visualization shows their critic produces monotonically increasing values during successful episodes and correctly captures failure-and-recovery patterns — behaviors the distributional critic misses entirely. The contrarian implication: the bottleneck for robot RL is critic quality, not policy architecture.
Torch Compile Is Insufficient for Real-Time Physical AI Deployment
The robotics community has largely adopted Torch Compile as the inference optimization standard. RLDX-1 demonstrates it leaves significant performance on the table for VLA workloads. "Torch Compile follows a graph-driven fusion strategy... it limits the fusion space under the short-prefill execution pattern of RLDX-1" (Section 5.2). The root problem: FlashAttention is treated as an opaque external kernel, creating hard fusion boundaries. Custom hand-designed kernels that fuse RMSNorm, RoPE, and attention into a single pass eliminate unnecessary memory round-trips (Figure 10). For companies running VLAs on edge hardware where milliseconds matter, off-the-shelf inference stacks are leaving meaningful latency on the table.
3. Companies Identified
RLWRLD
- Description: Korean startup co-developing RLDX-1 with KAIST. Primary institutional affiliation for the majority of project leads and researchers.
- Why relevant: This is the commercializing entity behind RLDX-1. The paper is effectively their product launch document. Their model outperforms Physical Intelligence and NVIDIA's current frontier humanoid policies on functional benchmarks.
- Quote: "RLDX-1 is a general-purpose robotic policy for dexterous manipulation" with code and models released at rlwrld.ai/rldx-1 (Abstract/Title page)
Physical Intelligence (π)
- Description: San Francisco AI robotics company, maker of π₀ and π₀.₅ VLA models.
- Why relevant: Direct benchmark competitor. π₀.₅ achieves ~40% on ALLEX humanoid tasks vs. RLDX-1's 86.8%. Critically, their RECAP RL framework is adopted and improved upon by RLDX-1. π₀.₅ "degrades significantly on unseen settings (e.g., 37.5% vs. RLDX-1's 54.2% on Unseen Object) and is the only baseline that frequently becomes stuck during unseen tasks, likely due to its weaker VLM backbone and full VLM fine-tuning, which encourages overfitting" (Section 6.2).
- Quote: "on catching fast-moving objects on conveyor-belt manipulation, RLDX-1 reaches a success rate of over 87.5% while π₀.₅ remains below 29.2%" (Section 1)
NVIDIA
- Description: GPU hardware provider and developer of the GR00T N1.5/N1.6 humanoid foundation models.
- Why relevant: GR00T N1.6 is the other primary benchmark competitor. Notable that GR00T N1.6 "is pre-trained with RoboCasa simulation data, whereas RLDX-1 achieves stronger performance without using any simulation data during pre-training" (Section 6.1). RLDX-1 also uses NVIDIA Nsight Compute for kernel profiling and cites NVIDIA's Cosmos-Transfer2.5-2B video generation model in the synthetic data pipeline.
- Quote: "GR00T N1.6 shows substantial performance drops under robustness shifts, decreasing from 96.7% on LIBERO to 72.6% on LIBERO-Plus" (Section 6.1)
WI Robotics (ALLEX)
- Description: Developer of the ALLEX upper-body humanoid robot used as RLDX-1's primary evaluation and training platform.
- Why relevant: ALLEX is a 48-DoF upper-body humanoid with 7-DoF arms, 15-DoF five-finger hands, and 2-DoF waist/neck. It represents the hardware platform where RLDX-1's most dramatic performance gains are demonstrated. A hardware partner in commercial deployment.
- Quote: "ALLEX is an upper-body humanoid robot designed for human-like dexterous manipulation. It is equipped with 7-DoF arms and 15-DoF five-finger hands." (Section 3.2)
- Description: German robotics company, maker of the Franka Research 3 (FR3) arm used as RLDX-1's single-arm evaluation platform.
- Why relevant: FR3 is the secondary hardware platform for functional capability evaluation, augmented with AnySkin tactile sensors. Their platform serves as the proving ground for physical sensing capabilities.
- Quote: "Franka Research 3 platform (FR3), a 7-DoF single-arm robot with an AnySkin tactile sensor, wrist and third-person cameras" (Figure 12 caption)
Axial (AnySkin)
- Description: Developer of the AnySkin magnetic tactile sensor mounted on the FR3 gripper.
- Why relevant: The tactile sensing modality is central to RLDX-1's physical sensing capability. Results show meaningful performance gains on contact-rich tasks when this sensor is active. "Physical sensory signals are much scarcer than visual observations and action labels, e.g., Franka Research 3 arm equipped with AnySkin tactile sensor is limited to a small set of internal data" (Section 2.2).
- Quote: "we further augment the gripper with an AnySkin tactile sensor and additionally record joint torque measurements" (Section 3.2)
- Description: Chinese humanoid robotics company, developer of GR-1 and GR-2 humanoids.
- Why relevant: Their Fourier ActionNet dataset (30K bimanual trajectories, ~140 hours) is a key pre-training data source. Their GR-1 humanoid is the primary target for synthetic data augmentation that improves tabletop performance by 9.1%.
- Quote: "Fourier ActionNet provides 30K bimanual manipulation trajectories (~140 hours) collected on Fourier GR-1 and GR-2 humanoids equipped with 6-DoF or 12-DoF dexterous hands" (Section 3.1)
Alibaba (Qwen Team)
- Description: Chinese technology conglomerate, developer of the Qwen3-VL 8B vision-language model.
- Why relevant: RLDX-1-VLM is built directly on Qwen3-VL 8B. The choice of backbone is operationally significant — it's open-sourced and outperforms PaliGemma 3B (used by Physical Intelligence) on visual reasoning benchmarks.
- Quote: "We build the RLDX-1-VLM upon Qwen3-VL 8B, a strong open-sourced model offering strong visual perception and multimodal reasoning capabilities" (Section 2.1)
- Description: Chinese humanoid robotics company developing the G1 mobile humanoid platform.
- Why relevant: Their AgiBot World dataset contributes 275K episodes (sampled from 1M+) to RLDX-1 pre-training, making it one of the largest single data contributors.
- Quote: "Agibot World contributes over 1M trajectories from 100+ homogeneous AgiBot G1 mobile base humanoid robots across 217 tasks and 106 scenes" (Section 3.1)
Galaxea Robotics
- Description: Chinese robotics company developing the R1 Lite bimanual mobile robot.
- Why relevant: Their Galaxea Open-World dataset (100K dual-arm trajectories) is included in pre-training. Represents the emerging wave of Chinese robotics data infrastructure.
- Quote: "Galaxea Open-World presents 100K dual-arm manipulation trajectories collected with the Galaxea R1 Lite, a 23-DoF bimanual mobile robot, across 150 task categories in 50 real-world scenes" (Section 3.1)
4. People Identified
Dongyoung Kim — RLWRLD / KAIST, Project & Research Lead
- Why notable: Joint first/project lead. Cited as lead author on kim2026exploring (the motion module underlying RLDX-1's motion awareness capability) and kim2026robocurate (the motion-consistency filtering pipeline). Central to both the architectural and data quality innovations.
- Quote: Listed as "Project Leads" and "Research Leads" (Title page)
Huiwon Jang — RLWRLD / KAIST, Project & Research Lead
- Why notable: Joint first/project lead. Primary author on jang2025contextvla, the paper underlying RLDX-1's context compression mechanism that enables efficient multi-frame temporal reasoning within the VLM backbone.
- Quote: Listed as "Project Leads" and "Research Leads" (Title page)
Myungkyu Koo — RLWRLD / KAIST, Project Lead
- Why notable: Project lead and primary author on koo2025hamlet, the long-term memory module integrated into RLDX-1. This work directly enables the 91.7% vs. ~30% performance gap on memory-requiring tasks.
- Quote: Listed as "Project Leads" (Title page); koo2025hamlet cited as the memory module source (Section 2.1)
Jinwoo Shin — KAIST, Research Lead / PI
- Why notable: Senior research lead and de facto PI. Faculty at KAIST with a strong track record in generative models and deep learning. The academic anchor of the collaboration, providing institutional credibility and research continuity.
- Quote: Listed as "Research Leads" with KAIST affiliation (Title page)
Taeyoung Kim — RLWRLD / KAIST, Project Lead
- Why notable: Project lead. Cited on kim2025contrastive and kim2025robot, suggesting contributions to the VLM grounding and spatial reasoning work underlying RLDX-1-VLM's robot-specific fine-tuning.
- Quote: Listed as "Project Leads" (Title page)
5. Operating Insights
Motion Sensing Is Table Stakes for Any Dynamic Deployment Environment
Any operator deploying robots near moving objects — conveyor systems, human co-workers, dynamic assembly lines — cannot rely on current-generation VLAs. The conveyor belt experiment is a direct analog: π₀.₅ "succeeds at the faster seen speed S4 but largely fails at the unseen S3 (29.2% on average)." It locks onto a single speed seen during training and ignores actual belt motion. RLDX-1's space-time self-similarity (STSS) module — integrated at the 30% depth of the vision encoder — achieves 100% on seen speeds and 75% on unseen interpolated speeds (Section 6.3). For engineering teams: temporal motion modeling is not a research add-on, it's a prerequisite for dynamic environments, and the integration point (vision encoder mid-layers, not final VLM layers) is now specified.
The Data Collection Protocol Is as Important as the Model Architecture
RLDX-1's adaptive data collection methodology — decomposing tasks into atomic primitives, defining consistency vs. variance factors, and iteratively targeting failure modes — is immediately actionable for any deployment team. "If the policy fails to handle objects placed in diverse positions, we increase the spatial coverage of object placements in the refinement dataset" (Section 4.3). This structured approach to demonstration collection replaces ad-hoc teleoperation with a systematic process. Combined with the RL refinement stage (text-based VLM critic requires minimal new training to adapt to new tasks), this creates a deployable loop: collect base demos → train → identify failure modes → collect targeted demos → RL refine. Heads of engineering should evaluate whether their current data collection protocols are structured around this variance/consistency decomposition or are essentially random sampling.
Custom Inference Kernels Are Now a Competitive Requirement for Real-Time VLAs
The 43.7ms vs. 71.2ms gap (1.63× speedup) from RLDX-1's inference optimizations is not just a benchmark number — it's the difference between a policy that can track a moving conveyor belt and one that cannot. The paper identifies the specific failure mode: Torch Compile creates hard fusion boundaries at FlashAttention kernel interfaces, preventing cross-operator fusion of RMSNorm, RoPE, and attention. "When RMSNorm, RoPE, and attention are executed as separate kernels, intermediate Q/K tensors are repeatedly written to and read from global memory, causing data movement to be decoupled from computation" (Section 5.2, Figure 10). CTOs building inference stacks for VLA deployment should audit whether their current optimization approach addresses this specific bottleneck — and budget for custom kernel development as a core infrastructure investment, not an optimization afterthought.
6. Overlooked Insights
The Embodiment-Agnostic Projection Layer Is a Quiet Breakthrough for Cross-Robot Generalization
Buried in the pre-training implementation details (Section 4.1) is a mechanism with outsized implications: alongside embodiment-specific projection layers, RLDX-1 maintains an "embodiment-agnostic projection layer, applied to a small fraction of samples in each batch regardless of source embodiment, providing a strong initialization for downstream fine-tuning." Inputs are zero-padded to a fixed size. This is essentially a universal robot adapter trained in parallel with specialized adapters. The practical implication: fine-tuning RLDX-1 to a new robot platform requires significantly less data than starting from scratch, because the agnostic layer provides a structured initialization that bridges the gap. For companies deploying across multiple robot SKUs or planning embodiment transitions, this design pattern dramatically reduces the per-embodiment data tax. No ablation is presented on its specific contribution, which means its true value is likely underestimated.
The Motion-Consistency Filtering Classifier May Be More Valuable Than the Generative Models It Filters
The synthetic data pipeline gets most of the attention, but the filtering infrastructure is the real defensible asset. RLDX-1 trains a lightweight cross-attention probe on top of frozen V-JEPA2 embeddings to compare simulator rollouts against synthetic videos — distinguishing whether IDM-predicted actions actually match the generated motion. "We train the probe with positive and negative pairs from available real-world demonstrations to capture fine-grained motion discrepancies" (Section 3.3). The probe uses a single cross-attention layer with a learnable query token, making it lightweight and retrainable per embodiment. The strategic implication: this classifier can be applied to any video-annotated robot dataset to cull low-quality action labels — not just synthetically generated ones. Public datasets like OXE and DROID likely contain annotation noise that this filter could address. A company that builds and applies this filter systematically across all available robot data has a data quality advantage that compounds over time and is independent of generative model quality.