Papers
Topics
Authors
Recent
Search
2000 character limit reached

Action Chunking Transformer (ACT)

Updated 31 January 2026
  • The paper introduces ACT, a transformer-based model that predicts blocks of future actions to mitigate compounding error and improve sample efficiency.
  • The model leverages self- and cross-attention over embedded action chunks and multimodal data to facilitate robust value estimation and effective temporal credit assignment.
  • Empirical evaluations demonstrate ACT's superiority over traditional methods in reinforcement learning, imitation learning, and motion planning across diverse robotics applications.

The Action Chunking Transformer (ACT) and its direct instantiations constitute a class of transformer-based architectures designed to address long-horizon decision-making in robotics and sequential control by predicting multi-step blocks (“chunks”) of future actions per forward pass. Rather than producing the next action in isolation, ACT models output sequences of forthcoming actions, leveraging self- and cross-attention over temporally chunked action and observation data. This approach mitigates compounding error, improves sample efficiency, and allows for effective temporal credit assignment. ACT has demonstrated strong empirical performance in reinforcement learning (RL), imitation learning (IL), motion planning, and contact-rich manipulation across a range of domains including industrial robotics, space guidance, and bimanual and haptic tasks.

1. Core Principles and Model Architecture

ACT reframes policy prediction and value estimation by segmenting demonstration or experience data into fixed-length chunks of KK steps. At each control interval tt, the agent predicts a block

at:t+K1=(at,at+1,,at+K1)a_{t:t+K-1} = (a_t, a_{t+1}, \dots, a_{t+K-1})

based on the current observation (which may be multimodal: images, joint states, haptic data, etc.) and optionally the previous action chunk. These chunks are embedded and processed by a sequence model—a transformer with layer structure:

  • Input Linear Embedding: Each action/state is projected to a model dimension dmodeld_\mathrm{model}, possibly concatenated with observation embeddings and global/style latent variables.
  • Positional Encoding: Standard sinusoidal or learned encodings ensure time-order awareness within chunks.
  • Self-/Cross-Attention Blocks: Multi-head self-attention layers enable each predicted step to attend to all previously predicted or observed tokens. In architectures with cross-modal input, cross-attention fuses context from vision, proprioception, and other modalities.
  • Output Head: Each output token is mapped via an MLP to the next action(s) in the chunk.

In RL (e.g. "Chunking the Critic: A Transformer-based Soft Actor-Critic with N-Step Returns" (Tian et al., 5 Mar 2025)), ACT has been deployed as a transformer-based critic within SAC (T-SAC). Here, the critic’s input sequence combines the state at tt and the succeeding chunk of nn actions, allowing direct evaluation of NN-step value Q(st,at,...,at+n1)Q(s_t, a_t, ..., a_{t+n-1}). Supervision uses N-step TD-return targets:

Gt(n)(st,at,,at+n1)=j=0n1γjrt+j+γnVϕtarget(st+n)G_t^{(n)}(s_t, a_t, \ldots, a_{t+n-1}) = \sum_{j=0}^{n-1} \gamma^j\, r_{t+j} + \gamma^n\, V_{\phi_{\mathrm{target}}}(s_{t+n})

with gradient-level averaging over intermediate return targets to reduce variance.

In imitation learning, behavioral cloning variants predict each chunk autoregressively at the chunk level, minimizing either L1L_1 or L2L_2 loss against recorded demonstration blocks (see (George et al., 2023, Vujinovic et al., 24 Jan 2025, Buamanee et al., 2024)).

2. Chunking Mechanisms and Inference

The chunking operation divides time series data into (possibly overlapping) fixed or adaptive-length blocks. At each update, the transformer model conditions on the current observation/context and often the preceding chunk, then predicts the next KK actions in parallel.

Training and inference involve:

Temporal ensembling is a technique for smoothing overlapping chunk predictions during inference: at time tt, the agent maintains all predictions for ata_t from the last KK overlapping chunks and combines them using an exponential weighting:

at=i=0K1wia^t(i),wi=exp(mi)j=0K1exp(mj)a_t = \sum_{i=0}^{K-1} w_i\, \hat{a}_t^{(i)},\qquad w_i = \frac{\exp(-m\,i)}{\sum_{j=0}^{K-1}\exp(-m\,j)}

where a^t(i)\hat{a}_t^{(i)} is the tt-th action from the chunk predicted at tit-i.

Extensions such as One ACT Play (George et al., 2023) introduce variance-aware ensembling, using the standard deviation of overlapping predictions to adapt the weighting or to suspend ensembling when predictions disagree.

3. Multimodal, Hierarchical, and Specialized Extensions

Numerous ACT variants target complex and high-dimensional robotic scenarios. Representative extensions include:

Bimanual and Hierarchical Coordination:

InterACT (Lee et al., 2024) adapts ACT for bimanual settings using a Hierarchical Attention Encoder (segment-wise self-attention within arms/vision; cross-segment attention on summary tokens), synchronized multi-arm decoders, and explicit synchronization blocks. This structure allows the policy to learn coordination across arms and modalities and was empirically necessary for high-precision multi-arm manipulation.

Force-/Haptic-Enhanced Policy Learning:

FTACT (Watanabe et al., 27 Sep 2025), Bi-ACT (Buamanee et al., 2024), and Haptic-ACT (Eljuri et al., 23 Jun 2025) extend ACT to fuse explicit force, torque, or haptic feedback channels with visual and proprioceptive information, augmenting the observation embedding and thereby providing robust cues for contact events and grasping failures in contact-rich manipulation.

Semantic and Concept-Aware ACT:

ConceptACT (Karalus et al., 23 Jan 2026) incorporates episode-level semantic concept annotations into the policy via a class-aware cross-attention mechanism in the encoder, enforced by an auxiliary alignment loss. Concepts such as object properties, spatial relations, or task constraints are injected at training time to improve sample efficiency and convergence speed, but are not required at deployment.

Adaptive Chunking and Mixture-of-Horizons:

"Mixture of Horizons in Action Chunking" (Jing et al., 24 Nov 2025) proposes MoH: training ACT models with multiple candidate chunk lengths in parallel, fusing predictions via a gating mechanism and supporting dynamic inference by consensus over horizon-wise votes. Empirically, MoH achieves superior performance, generalization, and throughput, especially on large-scale, multi-task settings.

Fusion with Dataset Synthesis and Large Modalities:

PerFACT (Soleymanzadeh et al., 3 Dec 2025) leverages an LLM-powered dataset generator paired with a Fusion Action-Chunking Transformer employing modality-specific bottleneck token attention to efficiently integrate robot state, point clouds, and workspace inputs for high-speed motion planning.

4. Empirical Evaluation and Benchmarks

ACT architectures empirically outperform single-step and purely autoregressive policies across a wide variety of application domains.

Key quantitative observations include:

  • On MetaWorld-ML1 (multiphase tasks), T-SAC achieves 86% success versus 70% for SAC and PPO (Tian et al., 5 Mar 2025).
  • Box-Pushing (Dense): T-SAC reaches 92% (vs. SAC 18%); Sparse: 58% (vs. SAC 0%).
  • ACT-JEPA (Vujinovic et al., 24 Jan 2025), integrating chunk prediction and abstract world modeling, achieves 91.6% average task success, outperforming stepwise regression baselines by over 5x.
  • In imitation learning from limited examples, One ACT Play (George et al., 2023) with demonstration augmentation and variance-aware ensembling attains over 78% stack-task success from a single human demonstration and only 400 synthetic augmentations.
  • In force- and tactile-rich domains, FTACT and Bi-ACT methods (Watanabe et al., 27 Sep 2025, Buamanee et al., 2024) achieve 100% task completion on trained objects and substantially improved zero-shot transfer on unseen objects or challenging contact-rich phases.
  • MoH (Mixture-of-Horizons) ACT (Jing et al., 24 Nov 2025) delivers 99% average success in LIBERO mixed-task settings, outperforming any fixed-horizon policy and achieving up to 2.5x higher throughput.
  • Sample efficiency: ACT-based policies train on orders of magnitude fewer demonstrations or interactions than meta-RL baselines, achieving smoother trajectories (mean smoothness S=1.71 vs. RL S=9.39, (Posadas-Nava et al., 4 Sep 2025)), higher precision, and better generalization.

Relative to classical step-by-step policies and standard autoregressive transformers:

  • Temporal Credit Assignment: Chunked prediction mitigates compounding error and reduces the effective planning horizon, critical for long-horizon and sparse reward tasks.
  • Stability and Variance Reduction: Gradient averaging across chunked targets and inference over temporally ensembled outputs decouple prediction variance from fine-grained control, yielding smoother and stabler policies (Tian et al., 5 Mar 2025, Posadas-Nava et al., 4 Sep 2025).
  • Modality Fusion and Flexibility: The transformer backbone allows scaling to high-dimensional visual, proprioceptive, haptic, and semantic modalities, improved by architectural innovations such as bottleneck tokens (Soleymanzadeh et al., 3 Dec 2025), hierarchical attention (Lee et al., 2024), and explicit concept-aware layers (Karalus et al., 23 Jan 2026).
  • Data Efficiency: Through block-wise behavioral cloning and demonstration augmentation (e.g. spatial linear transforms in One ACT Play (George et al., 2023)), ACT architectures drastically reduce the amount of required data for task mastery.

6. Pseudocode and Mathematical Formulations

The following pseudocode is representative of the ACT block in RL (critic update, (Tian et al., 5 Mar 2025)):

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
for each environment step:
    # Collect full trajectory and store into replay buffer
    for update in U steps:
        # Critic update
        Sample batch of L trajectories
        for each trajectory:
            Choose random t, extract state s_t
            Extract chunk [a_t, ..., a_{t+n-1}]
            Compute N-step target G^{(i)} for i=1...n
        Embed (s, chunk) into transformer input
        Forward pass to obtain [Q_1,...,Q_n]
        Compute per-step MSE losses
        Average gradients across steps, backpropagate
        Update critic φ
        # Policy update as in SAC, using Q(s,a) from critic
Key loss formulations:

  • N-step return:

Gt(n)(st,at,,at+n1)=j=0n1γjrt+j+γnVϕtarget(st+n)G_t^{(n)}(s_t, a_t, \dots, a_{t+n-1}) = \sum_{j=0}^{n-1} \gamma^j r_{t+j} + \gamma^n V_{\phi_{\mathrm{target}}}(s_{t+n})

  • Gradient-level averaging over chunk losses:

ϕLˉ=1ni=1nϕLi(ϕ)\nabla_\phi \bar{\mathcal{L}} = \frac{1}{n}\sum_{i=1}^n \nabla_\phi \mathcal{L}_i(\phi)

  • Behavioral cloning / IL loss:

LIL=1Ni=1N1Kk=0K1a^ti+kati+k22\mathcal{L}_{\mathrm{IL}} = \frac{1}{N}\sum_{i=1}^N \frac{1}{K}\sum_{k=0}^{K-1} \big\|\hat{a}_{t_i+k} - a_{t_i+k}\big\|_2^2

  • For auxiliary concepts (ConceptACT):

Ltotal=LACT+λLconcept\mathcal{L}_{\mathrm{total}} = \mathcal{L}_{ACT} + \lambda\,\mathcal{L}_{\mathrm{concept}}

7. Impact, Limitations, and Outlook

ACT and its descendants have established a new paradigm for long-horizon policy learning and value estimation through sequence modeling of action chunks. Their architectural flexibility enables domain-adapted specialization (multimodal, hierarchical, semantic), state-of-the-art sample and learning efficiency, and deployment in complex, real-time robotic control scenarios. Limitations observed include increased model capacity requirements for very long chunk horizons and the need to select appropriate chunk lengths and masking strategies, although recent methods such as MoH (Jing et al., 24 Nov 2025) address these challenges.

The progression from basic ACT to hierarchical, concept-aware, and adaptive-horizon transformers continues to expand capabilities in robot learning and large-scale sequential decision making, as evident in benchmarks spanning manipulation, planning, and industrial/biomedical automation. Empirical ablation studies consistently demonstrate the necessity of chunked prediction, attention-based modality integration, and chunk-to-chunk temporal smoothing for peak performance across application regimes.

Topic to Video (Beta)

No one has generated a video about this topic yet.

Whiteboard

No one has generated a whiteboard explanation for this topic yet.

Follow Topic

Get notified by email when new papers are published related to Action Chunking Transformer (ACT).