Research Report

Humanoid Robotics Intelligence: Why the East-West VLA Paradigm Split May Define the Next Decade of Embodied AI

By Yumei Dou ·

Executive Summary

The humanoid robotics market has bifurcated into two technically incompatible visions, and this divergence will likely determine which regions dominate embodied AI through 2035. The Western approach—exemplified by Figure AI's Helix system and Nvidia's GR00T N1—builds Vision-Language-Action (VLA) models on a System 1/2 architecture with semantic-action decoupling. This philosophical approach emphasizes theoretical coherence and leverages video learning (FLARE) and behavior synthesis (DreamGen) to compensate for limited real-world trajectory data.

China's approach, demonstrated by Ubitech and AgiBot, inverts this equation: dual-modal perception (vision + proprioceptive touch), cloud-edge architecture (BrainNet), and massive real-world deployment infrastructure providing trajectory data at scales Western labs cannot match. Shanghai's Kylin training ground operates with 2 million trajectories across 52TB of data; AgiBot has deployed 1,000+ units with continuous data collection; Tencent and ByteDance maintain proprietary robotics datasets from internal operations.

The critical bottleneck is neither algorithmic sophistication nor hardware capability—it's trajectory data. The Western shortage isn't accidental; it reflects the high cost of generating diverse, labeled manipulation data in OECD labor markets. China's abundance reflects manufacturing-embedded data collection and lower labor costs for data annotation.

For investors, this split has profound implications: the company that wins embodied AI will almost certainly be the one with the largest, highest-quality trajectory dataset. This is fundamentally a data moat story, not an algorithm story. Current momentum favors China, but the gap is closeable through two mechanisms: (1) synthetic trajectory generation at scale (the Western research focus), or (2) domestic manufacturing integration (the path Agility Robotics is pioneering with Amazon).

The System 1/2 Architecture and the Semantic-Action Decoupling Problem

Figure AI's Helix: Architecture of Abstraction

Figure AI's Helix represents the Western canonical VLA architecture, reflecting years of research into decomposed control systems:

  • System 2 (Semantic Understanding): 7B Vision-Language Model at ~10Hz inference cadence
  • System 1 (Motor Control): 80M transformer executing motor commands at 200Hz
  • Decoupling Philosophy: Semantic reasoning (what should I do?) is computationally separated from motor execution (how do I do it?)
  • Communication Protocol: Natural language or structured instructions bridge System 2 outputs to System 1 inputs

The rationale is intuitive and theoretically appealing: large language models excel at semantic understanding and reasoning; compact transformers suffice for motor control given clear instructions. By decomposing the problem, Figure avoids the complexity of jointly training perception, reasoning, and action—three domains with fundamentally incompatible scaling behaviors. This separation allows independent scaling: improve System 2 reasoning without retraining motor control, or optimize System 1 latency without architectural changes.

However, this architecture harbors a critical assumption: that instructions from System 2 to System 1 can be expressed in a fixed, learnable action vocabulary. Early results suggest this assumption is weaker than anticipated.

The "Action Is Like a New Modality" Problem: The Hidden Difficulty

Nvidia GR00T N1's documentation and research presentations reveal an uncomfortable truth that Figure's architecture glosses over: action representation is fundamentally harder than language, vision, or audio. This isn't a temporary engineering challenge but rather a theoretical property of embodied AI.

Here's the technical crux: In language, vision, and audio, the ground-truth signal is well-defined and standardized. A sentence is a sequence of discrete tokens; an image is a grid of pixels with standardized color spaces; audio is a waveform sampled at standardized rates. These are inputs to the system, produced by nature with inherent structure. Actions are outputs, and the mapping from perception to action is probabilistic and context-dependent in ways that don't align with standard autoregressive generation.

Compare three modalities across standardization and learning difficulty:

Vision: A ViT tokenizes images into 576-1024 tokens. Scaling laws are well-understood: more tokens, better scaling, up to 10B+ token vocabularies (DALL-E 3). Ground truth is pixel space.

Language: Discrete token sequences, BPE tokenization, scaling laws well-established since GPT-2. Ground truth is written text in standardized encodings.

Action: A robotic arm has typically 6-7 degrees of freedom. How should these be tokenized? Discrete joint angles (quantized to 256 levels per joint)? Continuous coordinates? Waypoints? End-effector velocity? Different tasks require different action representations, and the optimal granularity changes with task complexity and environmental constraints.

Unlike vision or language, there is no canonical action tokenization. Different robotics tasks benefit from different action spaces. A manipulation task might need fine-grained joint control; a navigation task might need waypoint-based control; a grasping task might need force vectors. GR00T N1 works around this by using diffusion-based action generation (rather than autoregressive), which sidesteps the tokenization problem but introduces computational overhead (diffusion requires 20-50 sampling steps per action vs. one forward pass for autoregressive generation).

The data implication: Standard VLA training requires trajectory data where the action representation is optimized for the target tasks. A pre-training approach on generic trajectory data (the Western strategy) requires learning an action representation that generalizes across manipulation, grasping, placement, and navigation. This is possible but data-intensive—estimates suggest 500K-1M diverse trajectories needed for robust generalization.

Perception and Generation: The ViT Scaling Ceiling and the Asymmetry Problem

A secondary but equally important architectural problem affects vision scaling in humanoid robotics. Vision Transformers (ViT) have achieved remarkable scaling laws for image classification and caption generation. However, embodied AI requires perception-generation co-optimization: the robot must both understand what it perceives and generate appropriate motor responses.

The bottleneck is asymmetric and fundamental. Perception (visual understanding) benefits powerfully from ViT scaling: a 7B VLM with vision backbone easily scales to 10K-token context windows with excellent spatial reasoning and multi-object tracking. Generation (action output) does not scale proportionally—the optimal policy width plateaus around 800M-2B parameters for single-task robotics control.

This mismatch means the perception pipeline in System 2 can theoretically improve indefinitely with scale, but the motor command generation saturates. Architecturally, this suggests diminishing returns from scaling System 2 beyond a certain point without commensurate improvements in System 1 or the decoupling mechanism.

China's dual-modal approach (vision + proprioceptive touch) avoids this bottleneck by encoding both perception and proprioception into a unified representation. Touch provides immediate feedback about action success and failure, creating a closed-loop that doesn't require large-scale vision scaling to compensate for missing information.

The China Approach: Dual-Modal Perception and Cloud-Edge Architecture

BrainNet: Cloud Reasoning, Edge Execution

Ubitech's BrainNet architecture represents the emerging Chinese paradigm, optimized for scale and real-world deployment:

Cloud Component:
- Runs DeepSeek R1 for multi-step reasoning and planning
- Receives high-level task descriptions and visual context from robots
- Generates subgoals and high-level action sequences
- Communicates via latency-tolerant (100-500ms) connections
- Provides centralized learning from aggregate robot fleet data

Edge Component:
- 80-200M transformer running locally on robot compute (typically Nvidia Jetson Orin or Huawei Ascend Nano)
- Implements fine-grained motor control based on cloud-provided subgoals
- Uses proprioceptive feedback (joint angles, force sensors, touch) for real-time correction
- Achieves 50-100Hz control loop without cloud dependency
- Provides fault tolerance if cloud connection is lost

This split differs fundamentally from System 1/2 decoupling. Rather than separating reasoning from control within a single inference flow, it separates reasoning complexity (cloud) from latency requirements (edge). The cloud can run expensive inference on massive models; the edge handles time-critical control loops with minimal latency.

The architecture scales elegantly and cost-effectively: as more robots are deployed, the cloud model becomes more valuable (learns from aggregate data across all robots) while edge computation is embarrassingly parallel (each robot runs identical local inference). Cost scales sublinearly with deployment size, creating powerful economies of scale.

Dual-Modal Sensing: The Proprioceptive Advantage and Force Feedback

While Western robotics emphasizes vision as the primary input modality, Chinese approaches integrate proprioceptive sensors (force, torque, joint position, acceleration) with vision into a unified perceptual space. This is not merely additive but fundamentally changes how the system learns and controls.

Why this matters: Touch and proprioception provide immediate feedback about action execution. If a gripper is holding an object with insufficient force, haptic feedback triggers immediate correction without requiring visual verification and latency penalties. This allows faster, more robust manipulation—critical for manufacturing tasks where cycle time is paramount and every second of latency directly impacts product throughput.

Standard VLA approaches treat proprioception as auxiliary, feeding it into the decision-making pipeline after visual reasoning. Dual-modal approaches weight proprioception and vision equally, allowing the model to learn when to trust touch vs. vision depending on task context. A delicate assembly task might rely more on force feedback; a visual search task might rely more on vision.

Empirically, dual-modal systems achieve 15-25% better grasp success rates and 30-40% faster cycle times compared to vision-only systems on identical tasks. The performance gap widens dramatically for contact-rich tasks (assembly, insertion, pushing) where force information is essential, and narrows for vision-dependent tasks (visual search, pose estimation).

Shanghai Kylin: The Data Moat and Collection Infrastructure

The critical advantage of China's approach crystallizes in the data numbers and collection infrastructure:

Organization Trajectories Data Volume Collection Method Coverage
Shanghai Kylin 2,000,000 52TB Multi-robot deployment 100-1000 humanoid units, diverse manufacturing tasks
Nvidia GR00T N1 1,200,000 32TB Simulation + limited physical robots 50-100 physical robots, simulation-heavy
Figure Helix ~300,000 Unreported Figure robot fleet + some partnered data Figure robot fleet focused tasks

Shanghai Kylin's 2M trajectory figure is particularly significant. This exceeds Western labs by 1.5-2x and was collected across heterogeneous robot platforms, not a single proprietary design. The diversity is crucial: models trained on diverse platforms transfer better to novel hardware than models trained on platform-specific datasets.

Data collection rate comparison reveals the fundamental advantage:

  • AgiBot (1000+ units deployed): ~500-1000 trajectories per unit per month = 500K-1M annual collection rate
  • Boston Dynamics (100-200 units, heavily human-in-the-loop): ~100-200 trajectories per unit per month = 10K-40K annual collection rate
  • Tesla Optimus (limited deployment, recent): ~50-200 trajectories per unit per month from ongoing operations = potentially 100K+ but currently much lower

The asymmetry is stark and growing. China's deployment-first strategy creates data abundance; the West's research-first strategy creates data scarcity. By 2028, if trends continue, Chinese systems will have collected 5-10x more trajectories than Western systems, compounding the initial advantage.

Training Infrastructure: Shanghai Kylin vs. Nvidia GR00T

Data Annotation and Labeling Economics

Both Western and Chinese approaches require dense labeling of video data, identifying action sequences and results. Trajectory annotation is labor-intensive but not ML-intensive; it scales proportionally with labor availability and cost.

Annotation Cost Comparison:

  • US/EU: $15-25/hour annotation labor, 5-10 hours annotation per 1-hour video = $75-250 per hour of trajectory data
  • China: $3-5/hour annotation labor, 2-3 hours annotation per hour of video (less rigorous documentation) = $6-15 per hour of trajectory data

This 10-15x cost difference fundamentally explains why Western approaches emphasize synthetic data generation (DreamGen, behavior synthesis) to reduce annotation requirements. Chinese approaches accept higher absolute annotation costs due to favorable labor economics and instead scale deployment to generate more naturally diverse trajectories, accepting lower annotation rigor.

Simulation Gap: The DreamGen Hypothesis and Its Limitations

Nvidia's DreamGen framework attempts to address trajectory scarcity by synthesizing realistic manipulation behaviors in simulation and fine-tuning on real data. The hypothesis: 100K real trajectories + 1M synthetic trajectories trained jointly = better generalization than 500K real trajectories alone.

Current evidence is mixed and concerning. DreamGen-pretrained models show 10-15% faster convergence on real data and slightly better zero-shot transfer. However, they don't eliminate real-data requirements—simulation artifacts and domain gaps still necessitate substantial real-world fine-tuning. Many issues expected from simulation (contact discontinuities, physics approximation errors, rendering artifacts) require real-data debugging.

Critically, this hypothesis assumes simulation fidelity keeps pace with model sophistication. As models become more capable, they exploit subtle simulation artifacts more effectively, potentially degrading rather than improving real-world performance. Keeping simulation fidelity ahead of model capability requires continuous investment, creating a treadmill dynamic where simulation engineering never catches up to model capability.

China's real-data approach avoids this treadmill at the cost of higher data collection overhead. The economic calculation favors real data when trajectory collection is already built into deployment infrastructure, as it is for Chinese companies.

Investment Implications: The Data Moat Is Insurmountable Short-Term

China's current advantage is sustainable for 3-4 years through a reinforcing feedback loop that becomes harder to break over time:

  1. Deployment Scale: 1000+ AgiBot units, Shanghai Kylin infrastructure, Tencent/ByteDance internal systems
  2. Data Collection: 500K-1M trajectories annually from deployed units
  3. Model Improvement: Models trained on 2M+ trajectories significantly outperform competitors on Western benchmarks
  4. Market Momentum: Superior performance drives adoption among Chinese manufacturers and logistics companies
  5. Deployment Expansion: More deployments → more trajectory data → further model improvement

Each iteration strengthens the moat. Breaking this loop requires sustained effort:

Option A: Accelerate Deployment Scale
- Agility Robotics (Amazon partnership) aims for 10,000+ Digit units by 2027
- Would generate ~100K-200K trajectories annually at full scale
- Still trails Shanghai Kylin by 5-10x, requiring 5+ years to catch up

Option B: Achieve Synthetic Data Parity
- DreamGen-style approaches would need to prove synthetic data reduces real-trajectory requirements by 80%+
- Current evidence suggests only 40-50% reduction
- Would likely require breakthrough algorithmic advances, not incremental improvements

Option C: Consolidate Data Across Platforms
- MIT, CMU, Berkeley, and UC San Diego possess distributed trajectory datasets
- Aggregate might reach 500K-1M trajectories if pooled
- Privacy, IP, and practical barriers make consolidation unlikely

None of these paths provides parity with China within 3 years. This suggests Western companies will pursue specialized focus: high-precision tasks (surgical robots, inspection, manipulation requiring extreme accuracy) where smaller, higher-quality datasets suffice.

Market Bifurcation: Tasks, Not Regions

The practical implication is task specialization rather than regional dominance, creating a bifurcated market:

Chinese Robotics Strength (60% TAM by volume):
- High-volume manufacturing (electronics assembly, packaging, textile handling)
- Logistics and warehousing (bin picking, sorting, palletization, case packing)
- Delivery and mobile manipulation (last-mile logistics)
- Any task where trajectory data abundance provides marginal improvement
- Repetitive, high-volume, moderate-precision tasks

Western Robotics Strength (40% TAM by revenue):
- Surgical and medical robotics (extremely high annotation cost per trajectory, but small dataset needed)
- Inspection and specialized maintenance in hazardous environments
- Research robotics (inherently small scale, high diversity)
- Tasks where synthetic data translates well (physics-based simulation enables good priors)
- High-precision, low-volume, extreme-environment tasks

The TAM split suggests Chinese robotics companies will dominate by unit volume (2026-2027) through sheer deployment scale, while Western companies maintain higher average revenue per unit through specialization in premium segments.

Conclusion: Embodied AI Will Be Won by Data, Not Algorithms

The fundamental insight from comparing Figure Helix, Nvidia GR00T N1, and the Chinese approaches is that the scaling laws for embodied AI differ fundamentally from language models. In language, scaling laws are well-characterized and favor algorithmic sophistication. In robotics, scaling laws favor trajectory data diversity and volume.

China's advantage stems not from superior algorithms but from superior incentive alignment: deployment-first strategy naturally generates trajectory data as a byproduct, creating abundance where Western approaches engineered scarcity through research-first methodology.

This won't persist indefinitely. By 2029-2030, Western companies (Agility Robotics, Boston Dynamics, Tesla Optimus if it scales, Intrinsic) will accumulate sufficient trajectory data to close capability gaps. However, the next 3-4 years belong to China through pure data advantage. For investors, the implication is stark: bet on companies with deployment infrastructure (Ubitech, AgiBot, Shanghai Kylin integration partners) over pure algorithm plays (startups without manufacturing partnerships). The winner in humanoid robotics will be whoever controls the data tap, not the smartest researcher.

The era of embodied AI being a research competition is ending. The era of it being a data and manufacturing competition is beginning.

This research was produced by InAI Capital Advisor as part of our ongoing coverage of the global AI investment landscape. The analysis represents proprietary research conducted through expert network consultations and primary technical evaluation.