Безопасность корпоративного уровня: Соответствует стандартам ISO 27001 + SOC 2 Type I.
Назад к глоссарию Ultralytics

Action Chunking

Узнай, как объединение действий (action chunking) повышает точность роботов и эффективность обучения с подражанием. Открой для себя, как использовать Ultralytics YOLO26 для снижения накопленных ошибок в ИИ-агентах.

Action chunking is an advanced deep learning technique, heavily utilized in robotics and imitation learning, where a model predicts a sequence (or "chunk") of future actions rather than a single action at each timestep. By forecasting a multi-step trajectory, action chunking allows AI agents to perform complex, long-horizon tasks with greater smoothness and reliability. This approach has gained significant traction following the introduction of Action Chunking with Transformers (ACT), a model architecture that combines temporal forecasting with high-dimensional computer vision inputs.

Смягчение накопления ошибок#

In traditional behavioral cloning, a model predicts the next immediate step based on the current state. However, during real-time inference, tiny prediction inaccuracies shift the system into unobserved states. These mistakes rapidly multiply, leading to task failure—a phenomenon known as compounding errors.

Action chunking directly addresses this limitation. By predicting multiple actions simultaneously (e.g., 50 joint movements covering 1 second of motion), the effective control horizon is reduced. The system commits to a coherent short-term plan based on a single reliable visual observation, vastly reducing the frequency of reactive errors. When integrating vision backbones like Ultralytics YOLO26 for spatial awareness and bounding box localization, the resulting predictions become incredibly stable against process noise.

Реальные приложения#

Action chunking has unlocked new capabilities in physical automation, particularly when deployed on edge AI hardware optimized by frameworks like Intel Edge:

  • Fine-Grained Robotic Manipulation: In industrial automation, robots use chunked predictions to execute contact-rich tasks that require high precision, such as threading cables, slotting batteries, or handling items tracked by package segmentation datasets. Generating cohesive action sequences prevents the jerky, inconsistent movements typical of single-step imitation learning.
  • Autonomous Navigation: In autonomous driving and drone flight, forecasting a block of control commands (like steering and acceleration) enables smoother trajectory planning, a concept heavily explored in recent IEEE robotics papers. Coupled with continuous object tracking and depth estimation, vehicles can safely navigate complex dynamic environments.

Разграничение похожих концепций#

To better understand how this technique fits into the broader artificial intelligence ecosystem, it is helpful to differentiate it from similar terms:

  • Action Chunking vs. Action Recognition: While action chunking generates a sequence of future commands for a machine to execute, action recognition is the analytical process of identifying activities happening within a video feed.
  • Action Chunking vs. Sequence-to-Sequence Models: Sequence-to-sequence architectures map an input sequence to an output sequence and are widely used in machine translation. Action chunking heavily utilizes these architectures—specifically Transformers—but restricts the output purely to low-level motor controls and kinematics rather than text.
  • Action Chunking vs. Reinforcement Learning: Reinforcement learning relies on reward signals to teach an agent through trial and error. Conversely, action chunking is primarily deployed in supervised behavioral cloning, where the model learns directly from human demonstrations without explicit reward maximization.

Реализация Action Chunking#

In practice, a vision system evaluates the environment, and a sequence decoder generates the chunked trajectory. The following Python snippet demonstrates a conceptual PyTorch module (an alternative to TensorFlow) that accepts an environment state—such as one derived from an object detection pass—and outputs a sequence of future actions.

import torch
import torch.nn as nn


class ActionChunker(nn.Module):
    def __init__(self, state_dim, action_dim, chunk_size):
        super().__init__()
        # Maps the current state to a sequence of future actions
        self.decoder = nn.Linear(state_dim, chunk_size * action_dim)
        self.chunk_size = chunk_size
        self.action_dim = action_dim

    def forward(self, state):
        # Predict the entire action chunk at once
        chunk = self.decoder(state)
        return chunk.view(-1, self.chunk_size, self.action_dim)


# Example: 128-dim state, 6 degrees of freedom, 50-step chunk
model = ActionChunker(state_dim=128, action_dim=6, chunk_size=50)

# Generate a 50-step action trajectory from a single observation
current_state = torch.randn(1, 128)
action_trajectory = model(current_state)

print(f"Action Chunk Shape: {action_trajectory.shape}")

Managing the massive datasets required to train these robotic policies is resource-intensive. Industry leaders like OpenAI and Anthropic pioneer large-scale models, but everyday developers rely on accessible tools. The Ultralytics Platform streamlines the data lifecycle for visual inputs, offering automated data annotation and seamless model training capabilities. As models evolve toward unified Vision-Language-Action (VLA) architectures, combining efficient vision systems with robust action chunking will continue to define the next generation of intelligent automation.

Explore solutions

Real-time AI that works with your team

ИИ в робототехнике

Делай свои машины умнее с помощью моделей Ultralytics YOLO. ИИ машинного зрения в робототехнике обеспечивает автономную навигацию, восприятие, отслеживание объектов и управление в реальном времени.
Узнать больше
Real-time AI that works with your team

ИИ в логистике

Оптимизируй логистику с помощью моделей Ultralytics YOLO. Vision AI позволяет инспектировать посылки, сортировать их, отслеживать транспортные средства и контролировать безопасность на складе в реальном времени.
Узнать больше
Real-time AI that works with your team

ИИ в розничной торговле

Переосмысли ритейл с помощью моделей Ultralytics YOLO. Vision AI расширяет возможности отслеживания запасов, мониторинга полок, управления очередями и более глубокого понимания клиентов.
Узнать больше
Real-time AI that works with your team

ИИ в здравоохранении

Создавай решения для здравоохранения с помощью моделей Ultralytics YOLO. ИИ для зрения в медицине ускоряет анализ медицинских изображений, делает диагностику более точной, а мониторинг пациентов — эффективнее.
Узнать больше
Real-time AI that works with your team

ИИ в производстве

Оптимизируй производство с помощью моделей Ultralytics YOLO. Vision AI управляет контролем качества, обнаружением дефектов, соблюдением СИЗ и автоматизацией сборочных линий.
Узнать больше
Real-time AI that works with your operation

ИИ в автомобильной отрасли

Применяй компьютерное зрение в автомобильной отрасли с моделями Ultralytics YOLO. ИИ для зрения повышает безопасность дорожного движения, помогает водителю и способствует автоматизации транспортных средств для создания более «умных» дорог.
Узнать больше
Real-time AI tailored to your operation

ИИ в сельском хозяйстве

Внедряй ИИ в «умное» сельское хозяйство с помощью моделей Ultralytics YOLO. Оптимизируй мониторинг посевов, отслеживание скота и точное земледелие для получения более высоких и «умных» урожаев.
Узнать больше
Real-time AI that works with your team

ИИ в робототехнике

Делай свои машины умнее с помощью моделей Ultralytics YOLO. ИИ машинного зрения в робототехнике обеспечивает автономную навигацию, восприятие, отслеживание объектов и управление в реальном времени.
Узнать больше
Real-time AI that works with your team

ИИ в логистике

Оптимизируй логистику с помощью моделей Ultralytics YOLO. Vision AI позволяет инспектировать посылки, сортировать их, отслеживать транспортные средства и контролировать безопасность на складе в реальном времени.
Узнать больше
Real-time AI that works with your team

ИИ в розничной торговле

Переосмысли ритейл с помощью моделей Ultralytics YOLO. Vision AI расширяет возможности отслеживания запасов, мониторинга полок, управления очередями и более глубокого понимания клиентов.
Узнать больше
Real-time AI that works with your team

ИИ в здравоохранении

Создавай решения для здравоохранения с помощью моделей Ultralytics YOLO. ИИ для зрения в медицине ускоряет анализ медицинских изображений, делает диагностику более точной, а мониторинг пациентов — эффективнее.
Узнать больше
Real-time AI that works with your team

ИИ в производстве

Оптимизируй производство с помощью моделей Ultralytics YOLO. Vision AI управляет контролем качества, обнаружением дефектов, соблюдением СИЗ и автоматизацией сборочных линий.
Узнать больше
Real-time AI that works with your operation

ИИ в автомобильной отрасли

Применяй компьютерное зрение в автомобильной отрасли с моделями Ultralytics YOLO. ИИ для зрения повышает безопасность дорожного движения, помогает водителю и способствует автоматизации транспортных средств для создания более «умных» дорог.
Узнать больше
Real-time AI tailored to your operation

ИИ в сельском хозяйстве

Внедряй ИИ в «умное» сельское хозяйство с помощью моделей Ultralytics YOLO. Оптимизируй мониторинг посевов, отслеживание скота и точное земледелие для получения более высоких и «умных» урожаев.
Узнать больше
Real-time AI that works with your team

ИИ в робототехнике

Делай свои машины умнее с помощью моделей Ultralytics YOLO. ИИ машинного зрения в робототехнике обеспечивает автономную навигацию, восприятие, отслеживание объектов и управление в реальном времени.
Узнать больше
Real-time AI that works with your team

ИИ в логистике

Оптимизируй логистику с помощью моделей Ultralytics YOLO. Vision AI позволяет инспектировать посылки, сортировать их, отслеживать транспортные средства и контролировать безопасность на складе в реальном времени.
Узнать больше
Real-time AI that works with your team

ИИ в розничной торговле

Переосмысли ритейл с помощью моделей Ultralytics YOLO. Vision AI расширяет возможности отслеживания запасов, мониторинга полок, управления очередями и более глубокого понимания клиентов.
Узнать больше
Real-time AI that works with your team

ИИ в здравоохранении

Создавай решения для здравоохранения с помощью моделей Ultralytics YOLO. ИИ для зрения в медицине ускоряет анализ медицинских изображений, делает диагностику более точной, а мониторинг пациентов — эффективнее.
Узнать больше
Real-time AI that works with your team

ИИ в производстве

Оптимизируй производство с помощью моделей Ultralytics YOLO. Vision AI управляет контролем качества, обнаружением дефектов, соблюдением СИЗ и автоматизацией сборочных линий.
Узнать больше
Real-time AI that works with your operation

ИИ в автомобильной отрасли

Применяй компьютерное зрение в автомобильной отрасли с моделями Ultralytics YOLO. ИИ для зрения повышает безопасность дорожного движения, помогает водителю и способствует автоматизации транспортных средств для создания более «умных» дорог.
Узнать больше
Real-time AI tailored to your operation

ИИ в сельском хозяйстве

Внедряй ИИ в «умное» сельское хозяйство с помощью моделей Ultralytics YOLO. Оптимизируй мониторинг посевов, отслеживание скота и точное земледелие для получения более высоких и «умных» урожаев.
Узнать больше

Давай строить будущее ИИ вместе!

Начни свой путь в будущее машинного обучения