Inferensys

Glossary

Centralized Training Decentralized Execution (CTDE)

A multi-agent learning paradigm where agents are trained with access to global state information but execute actions using only local observations, enabling coordination without communication overhead during deployment.
Developer demonstrating multi-agent tool use, agent tool selection interface on laptop, casual tech demo moment.
MULTI-AGENT LEARNING PARADIGM

What is Centralized Training Decentralized Execution (CTDE)?

A training paradigm that bridges the gap between global coordination and local autonomy in multi-agent systems.

Centralized Training Decentralized Execution (CTDE) is a multi-agent learning paradigm where agents are trained with access to global state information—including the observations and actions of all other agents—but during deployment, they execute actions using only their own local, partial observations. This architecture eliminates the need for inter-agent communication at runtime, enabling scalable coordination in bandwidth-constrained environments.

CTDE addresses the non-stationarity problem inherent in multi-agent reinforcement learning by providing a stationary, omniscient perspective during the training phase. The critic network receives the joint state-action space to learn a stable value function, while the actor network is conditioned solely on local observations. This decoupling is foundational for applications like multi-cell RAN optimization, where base stations must coordinate interference management during offline training but act independently during live network operation.

ARCHITECTURAL PARADIGM

Key Characteristics of CTDE

Centralized Training Decentralized Execution (CTDE) is a multi-agent learning paradigm that resolves the tension between global coordination and local autonomy. During a centralized training phase, agents have access to global state information and other agents' observations to learn coordinated policies. During decentralized execution, agents act using only their own local observations, eliminating communication overhead and single points of failure.

01

Global Information During Training

During the training phase, each agent's critic network receives the full global state—including observations, actions, and positions of all other agents. This extra information acts as a 'training wheels' mechanism, allowing the critic to accurately assess the value of an agent's action within the broader team context. The centralized critic can learn to assign credit even when an agent's local observation is ambiguous, dramatically accelerating the learning of cooperative behaviors. This approach directly addresses the non-stationarity problem inherent in independent multi-agent learning.

02

Local Observation During Execution

Once trained, the agent's actor (policy) network is deployed independently. It maps only the agent's own local sensory input directly to actions without querying a central controller or communicating with peers. This ensures:

  • Zero communication overhead during decision-making
  • Fault tolerance: failure of one agent does not crash the system
  • Scalability: adding more agents does not increase per-agent latency
  • Privacy: agents do not need to broadcast sensitive local state
03

Actor-Critic Decomposition

CTDE is most commonly implemented using the actor-critic architecture. The critic is centralized and takes global state as input to compute a value estimate; the actor is decentralized and takes only local observations to output a probability distribution over actions. This decomposition is the foundation of algorithms like MADDPG (Multi-Agent Deep Deterministic Policy Gradient) and COMA (Counterfactual Multi-Agent Policy Gradients). After training, the centralized critic is discarded—only the lightweight actor networks are deployed to agents.

04

Parameter Sharing for Homogeneous Agents

When agents are functionally identical—such as multiple base stations in a cellular network—CTDE enables parameter sharing. A single policy network is trained using the aggregated experiences of all agents, with agent-specific context provided via an agent ID embedding or local observation. This dramatically improves sample efficiency, as every agent's experience contributes to improving the shared policy. During execution, each agent runs an identical copy of the policy but conditions on its unique local observation, producing agent-specific behaviors.

05

Counterfactual Credit Assignment

A core challenge in cooperative multi-agent systems is determining which agent's action contributed to a shared team reward. CTDE enables counterfactual baselines—comparing the global reward received to what the reward would have been had the agent taken a different action. Algorithms like COMA compute a separate baseline for each agent by marginalizing out that agent's action, providing a precise learning signal that isolates individual contributions from collective outcomes and prevents lazy agent problems.

06

CTDE in Telecom RAN Optimization

In AI-enhanced Radio Access Networks, CTDE maps naturally to the distributed infrastructure. During offline training in a digital twin or network simulator, a centralized critic has access to full network telemetry—all UE positions, channel states, and cell loads. During live deployment, each base station's agent executes independently using only its own local SINR measurements, buffer status reports, and connected user equipment CQIs. This enables coordinated interference management and load balancing without real-time inter-gNB signaling, directly reducing X2/Xn interface overhead.

CTDE PARADIGM

Frequently Asked Questions

Clear, technical answers to the most common questions about the Centralized Training Decentralized Execution architecture for multi-agent reinforcement learning in wireless systems.

Centralized Training Decentralized Execution (CTDE) is a multi-agent reinforcement learning (MARL) paradigm where agents are trained with access to global state information—including the observations and actions of all other agents—but during deployment, each agent acts independently using only its own local observations. This architecture solves the non-stationarity problem inherent in multi-agent systems: during training, a centralized critic can observe the full environment state and the joint actions of all agents, providing a stable learning signal. At execution time, the decentralized actors rely solely on their own policy and partial observations, eliminating the need for inter-agent communication and reducing latency. In wireless networks, this means a group of base stations can be trained together in a simulator with perfect global knowledge of channel states and user positions, but once deployed, each base station makes independent resource allocation decisions based only on its own local measurements.

ARCHITECTURAL COMPARISON

CTDE vs. Other MARL Paradigms

A comparison of multi-agent reinforcement learning paradigms based on information access during training and execution phases, communication requirements, and scalability characteristics.

FeatureCTDEFully CentralizedFully Decentralized

Training Information Access

Global state, joint observations, and shared rewards

Global state and joint observations from all agents

Local observations only; no global information

Execution Information Access

Local observations only

Global state required

Local observations only

Inter-Agent Communication During Execution

Scalability with Agent Count

Linear to sub-linear; training scales with critic complexity

Poor; state-action space grows exponentially

Excellent; each agent operates independently

Coordination Capability

High; centralized critic learns joint value function

Optimal; single controller has full observability

Limited; emergent coordination through local interactions

Single Point of Failure

Typical Architecture

Actor-Critic with centralized critic and decentralized actors

Single monolithic policy network

Independent Q-learners or independent actor-critics

Sample Efficiency

Moderate to high; shared experience buffer

High; centralized replay of all transitions

Low; each agent learns from limited local data

Prasad Kumkar

About the author

Prasad Kumkar

CEO & MD, Inference Systems

Prasad Kumkar is the CEO & MD of Inference Systems and writes about AI systems architecture, LLM infrastructure, model serving, evaluation, and production deployment. Over 5+ years, he has worked across computer vision models, L5 autonomous vehicle systems, and LLM research, with a focus on taking complex AI ideas into real-world engineering systems.

His work and writing cover AI systems, large language models, AI agents, multimodal systems, autonomous systems, inference optimization, RAG, evaluation, and production AI engineering.