A structured reading list on Vision-Language-Action (VLA) models β from diffusion/flow matching foundations through state-of-the-art robot foundation model architectures to data scaling, RL fine-tuning, and world models. Papers in reading order.
390
13 commits
updated Mar 21, 2026
Getting started with VLA? This guide takes you from the foundations to the frontier β diffusion and flow matching, state-of-the-art robot foundation model architectures, data scaling, RL fine-tuning, and world models. Papers in reading order.
| Phase | Weeks | Topic | Readings |
|---|---|---|---|
| Phase 1 | W1β3 | Generative Model Foundations | MIT 6.S184 course |
| Phase 2 | W4β5 | Early Foundation RFMs & Robot Policy | RT-1, RT-2, Octo, OpenVLA, BeT, Diffusion Policy, ACT |
| Phase 3 | W6β7 | Current RFM Architectures | CogACT, GR00T N1, X-VLA, Ο0, InternVLA-M1 |
| Phase 4 | W8β9 | Data Scaling | OXE, AgiBot World, UMI, VITRA, Human to Robot Transfer |
| Phase 5 | W10β11 | Efficient Inference & Dual-System | RTC, SmolVLA, Helix, Fast-in-Slow |
| Phase 6 | W12β14 | RL Fine-tuning, Reasoning & World Model | HIL-SERL, SimpleVLA-RL, Ο*0.6, CoT-VLA, ThinkAct, Fast-ThinkAct, UniVLA, Cosmos Policy, DreamZero |
π Core Material: MIT 6.S184 β Introduction to Flow Matching and Diffusion Models (Holderrieth & Erives, MIT CSAIL, 2025) | Course notes paper
| Material | Topic |
|---|---|
| Lectures 1β2 | ODE/SDE basics, forward/reverse processes, conditional/marginal probability paths |
| Lab 1 | Hands-on SDE simulation |
| Material | Topic |
|---|---|
| Lectures 3β4 | Flow Matching, Score Matching, guidance, classifier-free guidance |
| Labs 2β3 | Building a toy diffusion model from scratch |
| Material | Topic |
|---|---|
| Lecture 5 | Guest lecture by Benjamin Burchfiel (Toyota Research): diffusion models for robotics |
| Lecture 6 | Generative protein design (optional) |
| # | Paper | Link | Key Topic |
|---|---|---|---|
| 1 | RT-1: Robotics Transformer β Brohan et al. (2022) | 2212.06817 | First large-scale Robotics Transformer (no VLM) |
| 2 | RT-2: Vision-Language-Action Models β Brohan et al. (2023) | 2307.15818 | VLM backbone β VLA paradigm |
| 3 | Octo β Ghosh et al. (2024) | 2405.12213 | Open-source generalist policy, modular design, pretrained on OXE (no VLM) |
| 4 | OpenVLA β Kim et al. (2024) | 2406.09246 | First open-source VLM-based VLA |
π Supplementary video: Stanford CS25 V3 β Low-level Embodied Intelligence
Key points: RT-1 (35M, no VLM) β RT-2 (55B VLM, action as text tokens) establishes the VLA concept. Octo (27Mβ93M, diffusion head, no VLM) and OpenVLA (7B, VLM + 256-bin discretization) are the first open-source generalist robot policies enabling community iteration.
| # | Paper | Link | Key Topic |
|---|---|---|---|
| 5 | Behavior Transformers (BeT) β Shafiullah et al. (2022) | 2206.11251 | Multimodal action discretization, k-means + offset |
| 6 | Diffusion Policy β Chi et al. (2023) | 2303.04137 | Diffusion for robot control, action sequence prediction |
| 7 | ACT/ALOHA β Zhao et al. (2023) | 2304.13705 | Action Chunking Transformer, CVAE, bimanual |
Key points: Three approaches to the multimodal action problem. Action chunking (predicting K future actions at once) is foundational for later VLA work.
| # | Paper | Link | Key Topic |
|---|---|---|---|
| 8 | CogACT β Li et al. (2024) | 2411.19650 | VLM + DiT action head, action token learning |
| 9 | GR00T N1 β Bjorck et al. (2025) | 2503.14734 | 2B diffusion transformer, whole-body humanoid control |
| 10 | X-VLA β Zheng et al. (2025) | 2510.10274 | Soft prompts for cross-embodiment, Florence-Large + flow matching |
Key points: All three use only the VLM's last hidden state to drive a separate action head.
| # | Paper | Link | Key Topic |
|---|---|---|---|
| 11 | Ο0 β Black et al. (2024) | 2410.24164 | Flow matching + action expert accessing VLM intermediate features |
| 12 | InternVLA-M1 β Chen et al. (2025) | 2510.13778 | Spatial grounding β action generation, AR-based |
π Background: Transfusion β Zhou et al. (2024) | 2408.11039 β AR + diffusion in one transformer; Ο0's architectural basis
Key points: Unlike Week 6's action heads that only see the VLM's last hidden state, these action experts access VLM internal hidden states.
| # | Paper | Link | Key Topic |
|---|---|---|---|
| 13 | Open X-Embodiment (OXE) β Open X-Embodiment Collaboration (2023) | 2310.08864 | 1M+ trajectories, 22 embodiments, standardized data format |
| 14 | AgiBot World β Bu et al. (2025) | 2503.06669 | 1M+ trajectories, 217 tasks, 5 deployment scenarios |
π Data formats β Recording-oriented: rosbag (ROS 1), mcap (vendor-neutral, ROS 2 default). Training-oriented: RLDS (TensorFlow/OXE standard), LeRobotDataset (HuggingFace, Parquet + video).
π From the Evolution of Rosbag to the Future of AI Tooling β by the original rosbag author; covers rosbag V1βV2 β rosbag2 (sqlite3) β MCAP evolution
Key points: Large-scale multi-embodiment datasets that enable generalist robot policy pretraining. OXE standardized the data format across 22 robot embodiments via RLDS; AgiBot World provides high-quality data at scale.
| # | Paper | Link | Key Topic |
|---|---|---|---|
| 15 | UMI β Chi et al. (2024) | 2402.10329 | Robot-free SE(3) data collection via handheld gripper |
| 16 | VITRA β Li et al. (2025) | 2510.21571 | Human video β VLA training data (1M episodes from egocentric human videos) |
| 17 | Human to Robot Transfer β Kareer et al. (2025) | 2512.22414 | Human video β robot transfer emerges with VLA scaling |
Key points: Three data sources beyond robot teleoperation β UMI (embodiment-agnostic physical demos, <$200 hardware), egocentric video, and exocentric video.
| # | Paper | Link | Key Topic |
|---|---|---|---|
| 18 | SmolVLA β Shukor et al. (2025) | 2506.01844 | 450M params (~1/7 of Ο0), model compression + async inference |
| 19 | RTC β Black et al. (2025) | 2506.07339 | Async inference β freezing + inpainting, no retraining needed |
Key points: Two complementary approaches β SmolVLA compresses the model itself, RTC optimizes the inference pipeline. Can be combined.
| # | Paper | Link | Key Topic |
|---|---|---|---|
| 20 | Helix β Figure AI (2025) | figure.ai/news/helix | S2: 7B VLM @7-9Hz, S1: 80M @200Hz, humanoid |
| 21 | Fast-in-Slow β Chen et al. (2025) | 2506.01953 | Integrated dual-system, end-to-end trainable |
Key points: Dual-System separates slow reasoning (VLM) from fast execution (lightweight policy) at different frequencies. Helix (separately trained) vs Fast-in-Slow (end-to-end trainable).
| # | Paper | Link | Key Topic |
|---|---|---|---|
| 22 | HIL-SERL β Luo et al. (2024) | 2410.21845 | Human-in-the-loop RL, sample-efficient real-world training |
| 23 | SimpleVLA-RL β Li et al. (2025) | 2509.09674 | RL fine-tuning for autoregressive VLA, outcome-based rewards |
| 24 | Ο*0.6 / Recap β Physical Intelligence (2025) | 2511.14759 | RL for flow-based VLA, advantage-conditioned, learns from suboptimal data |
Key points: Three RL approaches β HIL-SERL (human-in-the-loop, sample-efficient), SimpleVLA-RL (outcome rewards), Ο*0.6 (advantage-conditioned, learns from suboptimal data).
| # | Paper | Link | Key Topic |
|---|---|---|---|
| 25 | CoT-VLA β Zhao et al. (2025) | 2503.22020 | Visual chain-of-thought reasoning (future image prediction) before action |
| 26 | ThinkAct β Huang et al. (2025) | 2507.16815 | Decouple reasoning from execution; RL grounds plan quality in task success, not language supervision |
| 27 | Fast-ThinkAct β Huang et al. (2026) | 2601.09708 | Text-level CoT dispensable β latent distillation preserves planning capacity at ~10Γ speed |
π Fast-ThinkAct's reasoning compression is orthogonal to Week 10's model compression (SmolVLA, RTC) β the two can stack.
Key points: Reasoning representation β image tokens (CoT-VLA) vs. visual latent (ThinkAct) vs. compressed latent tokens (Fast-ThinkAct). ThinkAct grounds reasoning in task-outcome RL instead of language supervision. Fast-ThinkAct shows planning structure, not verbosity, carries the signal (~10Γ faster, performance preserved).
| # | Paper | Link | Key Topic |
|---|---|---|---|
| 28 | UniVLA β Wang et al. (2025) | 2506.19850 | Unified AR VLA with world modeling as training objective |
| 29 | Cosmos Policy β Kim et al. (2026) | 2601.16163 | Pretrained video foundation model as robot policy backbone |
| 30 | DreamZero β Ye et al. (2026) | dreamzero0.github.io | World Action Model, joint world+action generation in latent space |
Key points: Three ways to leverage world knowledge β training regularizer (UniVLA, no world prediction at inference), pretrained video FM as policy backbone (Cosmos Policy), joint world+action generation in latent space (DreamZero).
Suggestions for papers, resources, or structural improvements are welcome β please open an issue or PR.
Courses covering the prerequisites for this study guide β only those with recent (2023+) video lectures freely available on YouTube. Pick what you need.
| Area | Course | Instructor | Link | Notes |
|---|---|---|---|---|
| DL Fundamentals | MIT 6.S191: Intro to Deep Learning | Alexander Amini | introtodeeplearning.com Β· YouTube '25 | 1-week bootcamp (10 lectures) β CNN, Transformer, generative models, RL |
| Andrej Karpathy: Neural Networks: Zero to Hero | Andrej Karpathy | karpathy.ai/zero-to-hero.html Β· YouTube | Backprop β GPT, build everything from scratch in code | |
| Vision | Stanford CS231n: DL for Computer Vision | Fei-Fei Li et al. | cs231n.stanford.edu Β· YouTube '25 | The canonical CV course β backprop to detection/segmentation/video |
| NLP / Transformers | Stanford CS224n: NLP with Deep Learning | Christopher Manning | web.stanford.edu/class/cs224n Β· YouTube '24 | Word vectors β Transformers β LLMs |
| RL | UC Berkeley CS285: Deep RL | Sergey Levine | rail.eecs.berkeley.edu/deeprlcourse Β· YouTube '23 | Policy gradients, Q-learning, model-based & offline RL β by a leading robotics RL researcher |
13 commits
A structured reading list on Vision-Language-Action (VLA) models β from diffusion/flow matching foundations through state-of-the-art robot foundation model architectures to data scaling, RL fine-tuning, and world models. Papers in reading order.
390
13 commits
updated Mar 21, 2026
Getting started with VLA? This guide takes you from the foundations to the frontier β diffusion and flow matching, state-of-the-art robot foundation model architectures, data scaling, RL fine-tuning, and world models. Papers in reading order.
| Phase | Weeks | Topic | Readings |
|---|---|---|---|
| Phase 1 | W1β3 | Generative Model Foundations | MIT 6.S184 course |
| Phase 2 | W4β5 | Early Foundation RFMs & Robot Policy | RT-1, RT-2, Octo, OpenVLA, BeT, Diffusion Policy, ACT |
| Phase 3 | W6β7 | Current RFM Architectures | CogACT, GR00T N1, X-VLA, Ο0, InternVLA-M1 |
| Phase 4 | W8β9 | Data Scaling | OXE, AgiBot World, UMI, VITRA, Human to Robot Transfer |
| Phase 5 | W10β11 | Efficient Inference & Dual-System | RTC, SmolVLA, Helix, Fast-in-Slow |
| Phase 6 | W12β14 | RL Fine-tuning, Reasoning & World Model | HIL-SERL, SimpleVLA-RL, Ο*0.6, CoT-VLA, ThinkAct, Fast-ThinkAct, UniVLA, Cosmos Policy, DreamZero |
π Core Material: MIT 6.S184 β Introduction to Flow Matching and Diffusion Models (Holderrieth & Erives, MIT CSAIL, 2025) | Course notes paper
| Material | Topic |
|---|---|
| Lectures 1β2 | ODE/SDE basics, forward/reverse processes, conditional/marginal probability paths |
| Lab 1 | Hands-on SDE simulation |
| Material | Topic |
|---|---|
| Lectures 3β4 | Flow Matching, Score Matching, guidance, classifier-free guidance |
| Labs 2β3 | Building a toy diffusion model from scratch |
| Material | Topic |
|---|---|
| Lecture 5 | Guest lecture by Benjamin Burchfiel (Toyota Research): diffusion models for robotics |
| Lecture 6 | Generative protein design (optional) |
| # | Paper | Link | Key Topic |
|---|---|---|---|
| 1 | RT-1: Robotics Transformer β Brohan et al. (2022) | 2212.06817 | First large-scale Robotics Transformer (no VLM) |
| 2 | RT-2: Vision-Language-Action Models β Brohan et al. (2023) | 2307.15818 | VLM backbone β VLA paradigm |
| 3 | Octo β Ghosh et al. (2024) | 2405.12213 | Open-source generalist policy, modular design, pretrained on OXE (no VLM) |
| 4 | OpenVLA β Kim et al. (2024) | 2406.09246 | First open-source VLM-based VLA |
π Supplementary video: Stanford CS25 V3 β Low-level Embodied Intelligence
Key points: RT-1 (35M, no VLM) β RT-2 (55B VLM, action as text tokens) establishes the VLA concept. Octo (27Mβ93M, diffusion head, no VLM) and OpenVLA (7B, VLM + 256-bin discretization) are the first open-source generalist robot policies enabling community iteration.
| # | Paper | Link | Key Topic |
|---|---|---|---|
| 5 | Behavior Transformers (BeT) β Shafiullah et al. (2022) | 2206.11251 | Multimodal action discretization, k-means + offset |
| 6 | Diffusion Policy β Chi et al. (2023) | 2303.04137 | Diffusion for robot control, action sequence prediction |
| 7 | ACT/ALOHA β Zhao et al. (2023) | 2304.13705 | Action Chunking Transformer, CVAE, bimanual |
Key points: Three approaches to the multimodal action problem. Action chunking (predicting K future actions at once) is foundational for later VLA work.
| # | Paper | Link | Key Topic |
|---|---|---|---|
| 8 | CogACT β Li et al. (2024) | 2411.19650 | VLM + DiT action head, action token learning |
| 9 | GR00T N1 β Bjorck et al. (2025) | 2503.14734 | 2B diffusion transformer, whole-body humanoid control |
| 10 | X-VLA β Zheng et al. (2025) | 2510.10274 | Soft prompts for cross-embodiment, Florence-Large + flow matching |
Key points: All three use only the VLM's last hidden state to drive a separate action head.
| # | Paper | Link | Key Topic |
|---|---|---|---|
| 11 | Ο0 β Black et al. (2024) | 2410.24164 | Flow matching + action expert accessing VLM intermediate features |
| 12 | InternVLA-M1 β Chen et al. (2025) | 2510.13778 | Spatial grounding β action generation, AR-based |
π Background: Transfusion β Zhou et al. (2024) | 2408.11039 β AR + diffusion in one transformer; Ο0's architectural basis
Key points: Unlike Week 6's action heads that only see the VLM's last hidden state, these action experts access VLM internal hidden states.
| # | Paper | Link | Key Topic |
|---|---|---|---|
| 13 | Open X-Embodiment (OXE) β Open X-Embodiment Collaboration (2023) | 2310.08864 | 1M+ trajectories, 22 embodiments, standardized data format |
| 14 | AgiBot World β Bu et al. (2025) | 2503.06669 | 1M+ trajectories, 217 tasks, 5 deployment scenarios |
π Data formats β Recording-oriented: rosbag (ROS 1), mcap (vendor-neutral, ROS 2 default). Training-oriented: RLDS (TensorFlow/OXE standard), LeRobotDataset (HuggingFace, Parquet + video).
π From the Evolution of Rosbag to the Future of AI Tooling β by the original rosbag author; covers rosbag V1βV2 β rosbag2 (sqlite3) β MCAP evolution
Key points: Large-scale multi-embodiment datasets that enable generalist robot policy pretraining. OXE standardized the data format across 22 robot embodiments via RLDS; AgiBot World provides high-quality data at scale.
| # | Paper | Link | Key Topic |
|---|---|---|---|
| 15 | UMI β Chi et al. (2024) | 2402.10329 | Robot-free SE(3) data collection via handheld gripper |
| 16 | VITRA β Li et al. (2025) | 2510.21571 | Human video β VLA training data (1M episodes from egocentric human videos) |
| 17 | Human to Robot Transfer β Kareer et al. (2025) | 2512.22414 | Human video β robot transfer emerges with VLA scaling |
Key points: Three data sources beyond robot teleoperation β UMI (embodiment-agnostic physical demos, <$200 hardware), egocentric video, and exocentric video.
| # | Paper | Link | Key Topic |
|---|---|---|---|
| 18 | SmolVLA β Shukor et al. (2025) | 2506.01844 | 450M params (~1/7 of Ο0), model compression + async inference |
| 19 | RTC β Black et al. (2025) | 2506.07339 | Async inference β freezing + inpainting, no retraining needed |
Key points: Two complementary approaches β SmolVLA compresses the model itself, RTC optimizes the inference pipeline. Can be combined.
| # | Paper | Link | Key Topic |
|---|---|---|---|
| 20 | Helix β Figure AI (2025) | figure.ai/news/helix | S2: 7B VLM @7-9Hz, S1: 80M @200Hz, humanoid |
| 21 | Fast-in-Slow β Chen et al. (2025) | 2506.01953 | Integrated dual-system, end-to-end trainable |
Key points: Dual-System separates slow reasoning (VLM) from fast execution (lightweight policy) at different frequencies. Helix (separately trained) vs Fast-in-Slow (end-to-end trainable).
| # | Paper | Link | Key Topic |
|---|---|---|---|
| 22 | HIL-SERL β Luo et al. (2024) | 2410.21845 | Human-in-the-loop RL, sample-efficient real-world training |
| 23 | SimpleVLA-RL β Li et al. (2025) | 2509.09674 | RL fine-tuning for autoregressive VLA, outcome-based rewards |
| 24 | Ο*0.6 / Recap β Physical Intelligence (2025) | 2511.14759 | RL for flow-based VLA, advantage-conditioned, learns from suboptimal data |
Key points: Three RL approaches β HIL-SERL (human-in-the-loop, sample-efficient), SimpleVLA-RL (outcome rewards), Ο*0.6 (advantage-conditioned, learns from suboptimal data).
| # | Paper | Link | Key Topic |
|---|---|---|---|
| 25 | CoT-VLA β Zhao et al. (2025) | 2503.22020 | Visual chain-of-thought reasoning (future image prediction) before action |
| 26 | ThinkAct β Huang et al. (2025) | 2507.16815 | Decouple reasoning from execution; RL grounds plan quality in task success, not language supervision |
| 27 | Fast-ThinkAct β Huang et al. (2026) | 2601.09708 | Text-level CoT dispensable β latent distillation preserves planning capacity at ~10Γ speed |
π Fast-ThinkAct's reasoning compression is orthogonal to Week 10's model compression (SmolVLA, RTC) β the two can stack.
Key points: Reasoning representation β image tokens (CoT-VLA) vs. visual latent (ThinkAct) vs. compressed latent tokens (Fast-ThinkAct). ThinkAct grounds reasoning in task-outcome RL instead of language supervision. Fast-ThinkAct shows planning structure, not verbosity, carries the signal (~10Γ faster, performance preserved).
| # | Paper | Link | Key Topic |
|---|---|---|---|
| 28 | UniVLA β Wang et al. (2025) | 2506.19850 | Unified AR VLA with world modeling as training objective |
| 29 | Cosmos Policy β Kim et al. (2026) | 2601.16163 | Pretrained video foundation model as robot policy backbone |
| 30 | DreamZero β Ye et al. (2026) | dreamzero0.github.io | World Action Model, joint world+action generation in latent space |
Key points: Three ways to leverage world knowledge β training regularizer (UniVLA, no world prediction at inference), pretrained video FM as policy backbone (Cosmos Policy), joint world+action generation in latent space (DreamZero).
Suggestions for papers, resources, or structural improvements are welcome β please open an issue or PR.
Courses covering the prerequisites for this study guide β only those with recent (2023+) video lectures freely available on YouTube. Pick what you need.
| Area | Course | Instructor | Link | Notes |
|---|---|---|---|---|
| DL Fundamentals | MIT 6.S191: Intro to Deep Learning | Alexander Amini | introtodeeplearning.com Β· YouTube '25 | 1-week bootcamp (10 lectures) β CNN, Transformer, generative models, RL |
| Andrej Karpathy: Neural Networks: Zero to Hero | Andrej Karpathy | karpathy.ai/zero-to-hero.html Β· YouTube | Backprop β GPT, build everything from scratch in code | |
| Vision | Stanford CS231n: DL for Computer Vision | Fei-Fei Li et al. | cs231n.stanford.edu Β· YouTube '25 | The canonical CV course β backprop to detection/segmentation/video |
| NLP / Transformers | Stanford CS224n: NLP with Deep Learning | Christopher Manning | web.stanford.edu/class/cs224n Β· YouTube '24 | Word vectors β Transformers β LLMs |
| RL | UC Berkeley CS285: Deep RL | Sergey Levine | rail.eecs.berkeley.edu/deeprlcourse Β· YouTube '23 | Policy gradients, Q-learning, model-based & offline RL β by a leading robotics RL researcher |
13 commits