For decades, robotics operated within a rigid, deterministic paradigm. If an industrial automation engineer wanted a robot to pick a steel bolt from a conveyor and thread it into an engine block, they wrote deterministic code: hardcoded 3D Cartesian coordinates, inverse kinematics (IK) solvers, explicit trajectory waypoints, and tightly calibrated bounding-box vision filters. If the bolt was moved 5 centimeters to the left, or if lighting cast unexpected shadows across the workcell, the program crashed.
Robots were blind to common-sense semantic context; they were simply repeaters of fixed geometric math.
The rise of Large Language Models (LLMs) and Vision-Language Models (VLMs) like GPT-4o, Claude, and Gemini demonstrated that neural networks trained on internet-scale text and images could master semantic reasoning, visual scene decomposition, and abstract logic. Yet, these models remained “disembodied.” A large vision-language model could look at a photo of a kitchen counter, correctly identify an apple, and write a detailed poetic essay on how to slice it—yet it possessed zero physical agency to output the joint torques, velocity vectors, and end-effector gripper states needed to move an arm across space.
To bridge this physical chasm, roboticists created Vision-Language-Action (VLA) models.
Pioneered by Google DeepMind with RT-2 (Robotics Transformer 2) and rapidly expanded by open-source frameworks like OpenVLA and industrial foundation engines like Figure AI’s Helix, VLAs represent the foundational operating system of modern physical AI.
By unifying visual perception tokens, natural language prompt tokens, and physical actuator action vectors into a single end-to-end neural network, VLAs allow humanoids to convert spoken human intent (“Hand me the tool that can cut this zip-tie”) directly into fluid, closed-loop physical movements without human teleoperation or pre-scripted trajectories.
Key Architectural Takeaways
The Unified Token Paradigm: VLAs treat physical motor commands not as isolated numerical outputs, but as discrete “action tokens” or continuous latent embeddings integrated directly into the language model’s vocabulary.
Internet-Scale Semantic Transfer: By building on top of pre-trained VLM backbones, robots inherit common-sense physical reasoning (e.g., knowing that an energy drink helps someone who is tired, or that a rock can be used as an improvised hammer) without needing explicit robot demonstration data for every concept.
Action Prediction Strategies: Architectures split between autoregressive discrete tokenizers (RT-2, OpenVLA, predicting 256 discretized bins per degree of freedom) and continuous generative decoders (Diffusion Policy / Flow Matching action heads).
Frequency Hierarchies (System 1 vs. System 2): Solves the compute latency bottleneck by separating high-level semantic reasoning (3 Hz to 10 Hz) from high-frequency whole-body kinematic balance and motor impedance control (200 Hz to 1,000 Hz).
Multi-Embodiment Generalization: Datasets like the Open X-Embodiment (OXE) pool millions of trajectories across disparate robot types, enabling a single VLA backbone to generalize across single-arm grippers, quadrupeds, and full-scale 50-DoF bipedal humanoids.
| Engineering Metric | RT-2 (Google DeepMind) | OpenVLA (Stanford / Berkeley) | Helix VLA (Figure AI) | Physical AI Impact |
| Model Parameter Scale | Up to 55B parameters (PaLM-E backbone) | 7B parameters (Prismatic / LLaMA-2) | Proprietary (Optimized Edge Parameter Scale) | Dictates whether inference runs on cloud clusters or onboard GPUs |
| Action Representation | Discretized Action Tokens (256 bins/DoF) | Discretized Action Tokens (256 bins/DoF) | Continuous Multi-DoF Trajectory Output | Continuous policies eliminate robotic motor stutter and jerky motions |
| Kinematic Control Scope | 6-DoF End-Effector + 1-DoF Gripper | 7-DoF Arm Pose + Gripper binary | Full Upper-Body (Arms, Wrists, Torso, Fingers) | Helix controls coordinated whole-body humanoid posture |
| Training Data Origin | Web VLM + 130k+ Google Robot Demos | Open X-Embodiment (970k+ trajectories) | Proprietary BMW & Household Teleoperation Demos | General web knowledge vs. task-specific industrial precision |
| Inference Frequency | ~1 Hz to 5 Hz (Cloud latency bound) | ~5 Hz to 10 Hz (Local desktop GPU) | High-Frequency Continuous Control (Onboard) | Onboard high rates are mandatory to prevent collisions with humans |
| Edge Hardware Target | Datacenter TPU / Cloud Cluster | Workstation (e.g., RTX 4090 / A100) | Onboard Dual Embedded Low-Power GPUs | Air-gapped factory deployment with zero external network lag |
| Multi-Robot Capability | Single robot execution | Single robot execution | Multi-Robot Collaborative Manipulation | Coordinated handoffs between two independent humanoids |
To understand a VLA, one must trace the flow of information through the network layers. Unlike traditional robotics architectures that maintain separate software modules for object recognition, path planning, and trajectory generation, a VLA executes these functions inside a unified neural transformer:
Stage 1: Multi-View Visual Encoding (The Vision Backbone)
Head-mounted stereo cameras and wrist-mounted micro-cameras capture live video frames (e.g., $224 \times 224$ or $384 \times 384$ pixels).
A pre-trained Vision Transformer (ViT) (such as SigLIP, CLIP, or Dinov2) breaks the 2D image into a grid of non-overlapping image patches (e.g., $14 \times 14$ pixels each).
Linear projection layers convert these spatial patches into dense visual embedding tokens, encoding spatial relationships, object textures, lighting gradients, and depth cues.
↓ (Multimodal Sequence Fusion)
Stage 2: Language Context & Cross-Attention (The Transformer Core)
The natural language task prompt (“Gently pick up the ripe peach from the crate and place it in the soft bowl”) is tokenized into standard text tokens via an LLM tokenizer (such as LLaMA or PaLM).
The visual tokens and text tokens are concatenated into a single sequential input stream.
Self-attention and cross-attention layers across the multi-billion-parameter backbone compute attention weights between words and pixels. The token representing “peach” attends directly to the visual tokens representing the fuzzy orange object, while “soft bowl” attends to the target container.
↓ (Action Generation & De-Tokenization)
Stage 3: Action Head Execution (The Physical Actuation Boundary)
The model reaches its output projection layers. Instead of generating a next-token word in a sentence, the VLA outputs an action chunk.
The action is expressed either as discrete tokens (mapped to $x, y, z$ positional deltas, roll-pitch-yaw rotations, and gripper clamp width) or as continuous latent vectors decoded by a downstream policy.
These output coordinates pass to the low-level controller, which executes the joint movements.
The primary architectural debate within VLA engineering centers on how the network outputs physical actions. Physical motion is continuous and smooth, whereas language models are built to predict discrete, categorical text tokens.
Methodology 1: Discrete Action Tokenization (RT-2 & OpenVLA Approach)
The Technique: The continuous range of each actuator or end-effector degree of freedom (e.g., an arm moving from -1.0 m to +1.0 m along the X-axis) is split into a discrete number of uniform buckets—typically 256 bins.
Vocabulary Expansion: 256 reserved token IDs are appended to the language model’s text vocabulary dictionary.
The Process: When the model outputs an action, it simply generates a string of text tokens representing numbers:
Advantage: Simplicity. It requires zero architectural modifications to standard transformer decoders, allowing the model to be trained using cross-entropy loss, identically to predicting the next word in an essay.
Disadvantage: Discretization error. Quantizing continuous physical motion into 256 steps creates stepping artifacts. Furthermore, predicting actions autoregressively token-by-token increases computational latency, capping control frequencies at a sluggish 3 Hz to 10 Hz.
↓ (Generative Paradigm Shift)
Methodology 2: Continuous Flow-Matching & Diffusion Policy Heads (Helix & Modern VLA Approach)
The Technique: The transformer backbone does not predict raw action tokens. Instead, it outputs a rich conditioning latent vector that conditions a Diffusion Policy or Flow-Matching action head.
The Process: Starting from pure Gaussian random noise, the action head runs a brief denoising process (over 4 to 10 denoising steps) to generate a smooth, continuous trajectory chunk across time:
Multimodal Distributions: If an obstacle blocks an arm, a discrete token model can average two valid paths, causing the arm to plunge straight into the obstacle. Diffusion heads naturally model multi-modal probability distributions: they can decide to go 100% to the left OR 100% to the right with zero path averaging.
Continuous Dynamics: Produces fluid, jitter-free joint movements running at high continuous frequencies, eliminating jerky stepping artifacts at the motor level.
A massive challenge in deploying VLAs onto physical humanoids is computational latency. A 7-billion-parameter multimodal neural network takes 100 to 300 milliseconds to complete a forward pass on a high-end mobile GPU.
If a robot’s whole-body balance and obstacle-avoidance reflex loop ran at only 3 Hz, the robot would fall over the moment its foot stepped on an uneven pebble.
To solve this mismatch between cognitive reasoning and dynamic physics, modern physical AI implements a dual-rate hierarchical architecture (loosely modeled on Daniel Kahneman’s “System 1 and System 2” cognitive paradigm):
System 2: The High-Level Cognitive Brain (Slow / Asynchronous: 3 Hz to 10 Hz)
Compute Engine: Multimodal VLA Foundation Model (e.g., OpenVLA, Helix VLA) running on edge GPUs (NVIDIA Jetson Thor / Blackwell).
Sensory Input: Multi-camera RGB video, high-level natural language instructions, spatial audio cues.
Task Scope: Semantic scene interpretation, object identification, sub-goal generation, and rough Cartesian trajectory chunking (“Reach toward the red lever, hold clamp open”).
↓ (Asynchronous Intermediate Action Trajectory Buffer)
System 1: The Low-Level Reflexive Spine (Fast / Deterministic: 200 Hz to 1,000 Hz)
Compute Engine: Real-Time Embedded Microcontrollers (ARM Cortex-R / RTOS / FPGA / EtherCAT Master).
Sensory Input: Joint optical encoders, 6-axis force/torque sensors, IMUs, tactile finger skins.
Task Scope: Whole-Body Control (WBC), dynamic Zero-Moment Point (ZMP) balancing, Inverse Kinematics (IK), and active mechanical impedance modulation.
Fail-Safe Reflexes: If a human worker brushes against the robot’s forearm while the VLA is mid-reach, System 1 detects the resistive current spike within 1.5 milliseconds, instantly softening joint stiffness or freezing movement without waiting for the slow System 2 model to process the visual frame.
Why not simply train a small convolutional neural network directly on robot demonstration data? Why use massive multi-billion-parameter vision-language models at all?
The breakthrough of VLAs lies in semantic transfer and emergent capabilities.
When a policy is trained strictly on robot teleoperation data, its knowledge is limited to the exact physical items it encountered during training. If a robot was trained to pick up yellow plastic cups, placing a translucent glass tumbler in front of it often causes the policy to fail completely.
Pre-Training Transfer Layer 1: Zero-Shot Object Generalization
Because the VLA’s vision-language backbone was pre-trained on billions of image-text pairs from the web, it already knows what thousands of objects look like—even if it has never physically touched them on a robot.
It understands visual concepts like “translucent,” “fragile,” “rusty,” or “folded” without needing robotic demonstrations for each attribute.
↓ (Cognitive Abstraction Expansion)
Pre-Training Transfer Layer 2: Abstract Reasoning and Chain-of-Thought
In DeepMind’s RT-2 evaluations, the model was instructed: “Pick up the improvised hammer”.
The robot was never trained on a demonstration labeled “improvised hammer.” Yet, leveraging its web-scale language knowledge, the VLA reasoned that a hammer requires mass and hardness, visually identified a rock resting on the table, and output the correct grasping trajectory to pick up the rock.
Similarly, when told to “Clean up the spill,” the model bypassed nearby apples and plastic cups to grasp a porous sponge, understanding functional tool affordances purely through semantic transfer.
The real-time operational execution of generalist Vision-Language-Action models—unifying natural language understanding with multi-DoF upper-body humanoid coordination—is visible in active commercial platform milestones:
Figure Helix VLA Foundation Model Operational Showcase:
Watch the multimodal VLA execute collaborative manipulation tasks: Figure Helix: A Vision-Language-Action Model for Generalist Humanoid Control
Key Observation Points:
Real-time semantic task decomposition from open-ended natural language prompts without pre-scripted code.
Coordinated continuous multi-DoF upper-body motion (arms, wrists, and individual fingers moving simultaneously).
Zero-shot grasping of novel household items and groceries never encountered during teleoperation training.
Synchronized multi-robot collaboration: two humanoids executing shared long-horizon assembly using a single neural model.
In classical industrial automation, the hardware represents only 25% to 35% of total project costs. The remaining 65% to 75% is consumed by systems integration: hiring teams of specialized robotics programmers to manually script trajectories, calibrate vision fixtures, design custom mechanical part feeders, and tune safety PLC interlocks.
If a manufacturing plant shifts from producing Sedans to SUVs, reprogramming the workcells takes months of downtime and millions of dollars in engineering billable hours.
Economic Vector 1: The Exponential Cost of Traditional Scripting
Every new SKU or assembly variation requires bespoke trajectory coding and testing.
Scaling to thousands of unstructured tasks in homes or warehouses is economically impossible through human programming alone.
↓ (Software Paradigm Disruption)
Economic Vector 2: The VLA Zero-Shot Scaling Curve
New tasks are assigned simply by speaking natural language commands or providing a single visual goal prompt.
A humanoid running an enterprise VLA can be moved from a packaging line to a kitting station without rewriting code. The foundation model inspects the novel workspace, identifies the bins, and initiates manipulation immediately based on broad physical priors.
Deployment Velocity: Reduces onboarding time for new robotic manufacturing workflows from months down to hours, fundamentally disrupting the economics of factory and warehouse automation.
Vision-Language-Action (VLA) Models: Pros & Operational Strengths
Universal Semantic Generalization: Inherits web-scale common-sense knowledge, enabling robots to understand novel objects, spatial relationships, and open-ended language prompts without task-specific training.
Unified End-to-End Learning: Replaces fragile multi-component software pipelines (object detection -> segmentation -> pose estimation -> motion planning) with a single, differentiable neural network.
Intuitive Human Collaboration: Allows factory floor workers without computer science degrees to command, retask, and supervise robotic operations using spoken natural language.
Vision-Language-Action (VLA) Models: Limitations & Engineering Risks
Inference Compute Overhead: Running 7B+ parameter models locally demands high-wattage edge GPUs (100 W to 300 W), consuming precious onboard battery reserves.
The “Black Box” Explainability Problem: Unlike deterministic kinematics code, end-to-end neural networks cannot offer 100% formal safety proofs; debugging why a robot dropped a part or executed an erratic swing remains challenging.
High-Precision Insertion Gaps: While VLAs excel at coarse grasping and object sorting, sub-millimeter industrial assembly (e.g., tight-tolerance bearing press-fitting) still requires localized force-torque feedback and classical compliance loops.
The Bot.to Benchmark Verdict:
Vision-Language-Action (VLA) models are the defining software architecture of the embodied AI era. They solve the foundational limitation of classical robotics: the inability to generalize across the messy, unstructured visual world.
However, VLAs will not replace classical robotics entirely. The winning commercial architecture is a hybrid mechatronic stack: massive multimodal VLA foundation models acting as the high-level semantic brain (System 2), feeding goal trajectories down into deterministic, gigahertz whole-body controllers and tactile impedance loops (System 1) that guarantee physical balance and millisecond-level human safety.
Q: What does VLA stand for in robotics, and how is it different from an LLM?
A: VLA stands for Vision-Language-Action. While a Large Language Model (LLM) takes text in and outputs text, a VLA takes both camera images (Vision) and natural language text (Language) as inputs, and directly outputs low-level physical motor commands, joint angles, or end-effector trajectories (Action) to move a robot’s physical body.
Q: Can a VLA model run directly on a humanoid robot without an internet connection?
A: Yes, modern production-grade VLAs (such as Figure’s Helix or optimized 7B-parameter models like OpenVLA) are specifically optimized to run locally on embedded onboard AI hardware (such as NVIDIA Jetson Thor or dual automotive-grade GPUs). This eliminates cloud network latency, data privacy vulnerabilities, and the risk of the robot freezing if factory Wi-Fi drops out.
Q: What is the difference between discrete action tokens and continuous diffusion action heads?
A: Discrete action token models (like RT-2) break physical motion into discrete buckets (e.g., 256 numerical steps per joint) and predict them one by one like words in a sentence. Continuous diffusion heads use generative denoising to output complete, fluid, multi-joint trajectory curves all at once, eliminating robotic motor stutter and allowing smooth whole-body humanoid coordination.
Q: How do VLA models know what to do with objects they have never seen before?
A: VLAs inherit their visual and semantic understanding from vision-language backbones pre-trained on billions of photos and descriptions from the internet. Because the model has already “seen” millions of variations of cups, tools, fruits, and furniture online, it understands what they are and how they function physically, transferring that common sense to physical manipulation without needing bespoke robot training demos.
Explore related platforms and technical profiles in the Bot.to Humanoid Directory or read our direct hardware breakdown: Figure 02 vs. Tesla Optimus: Actuation, AI Stack, and Factory Deployment Timelines.