Centralized Training Decentralized Execution (CTDE) is a multi-agent reinforcement learning paradigm where agents are trained with access to global state information in a centralized simulator but execute their learned policies using only local observations. This architecture resolves the non-stationarity problem inherent in multi-agent environments by providing a stationary, omniscient perspective during the learning phase.
Glossary
Centralized Training Decentralized Execution (CTDE)

What is Centralized Training Decentralized Execution (CTDE)?
A training paradigm for multi-agent systems where policies are learned using global information but executed using only local observations.
During execution, agents act independently based on their own partial views of the environment, eliminating the need for a central controller or high-bandwidth communication links. This makes CTDE the dominant architecture for scalable coordination in distributed spectrum access networks, where secondary users must make autonomous channel selection decisions without sharing real-time sensing data.
Key Features of CTDE
Centralized Training Decentralized Execution (CTDE) resolves the tension between global coordination and local autonomy in multi-agent reinforcement learning. By leveraging privileged information during training but requiring only local observations at runtime, CTDE enables scalable, real-world deployment of cooperative spectrum access policies.
Global Critic, Local Actor
The defining architectural split of CTDE. During centralized training, a critic network has access to the full global state—including the positions, intentions, and observations of all agents—as well as joint actions. This critic computes a value function that accurately assesses the contribution of a single agent's action to the team's overall objective. The actor network, however, is conditioned only on the agent's own local observation history. At execution time, the critic is discarded entirely, and the agent acts autonomously using only its local policy. This is typically implemented via Actor-Critic algorithms with parameter sharing among homogeneous agents.
Non-Stationarity Mitigation
In standard multi-agent reinforcement learning, the environment appears non-stationary from the perspective of any single agent because other agents are simultaneously learning and changing their behavior. This violates the Markov assumption and causes training instability. CTDE addresses this by conditioning the centralized critic on the joint observation-action space. From the critic's omniscient viewpoint, the world is stationary because the dynamics of all agents are accounted for. This stabilization is critical for learning convergent spectrum access policies where multiple secondary users must coordinate without explicit communication.
Parameter Sharing for Scalability
CTDE naturally supports parameter sharing among homogeneous agents, where all agents use copies of the same neural network. During training, experiences from all agents are aggregated into a single replay buffer, dramatically improving sample efficiency. The shared policy learns a generalizable strategy conditioned on each agent's unique local observation. This allows a trained policy to be deployed to an arbitrary number of cognitive radios without retraining, enabling truly scalable dynamic spectrum access networks. The approach is foundational to algorithms like MADDPG and QMIX.
Value Decomposition for Coordination
A key challenge in CTDE is ensuring that the decentralized actors learn coordinated behavior without explicit communication. Value decomposition techniques address this by factorizing the centralized joint action-value function into per-agent utility functions. The IGM (Individual-Global-Max) principle ensures that the optimal joint action is equivalent to the collection of each agent's greedy local action. Algorithms like VDN (additive decomposition) and QMIX (monotonic mixing network) enforce this constraint, enabling agents to learn implicit coordination protocols for collision-free spectrum access.
Communication-Free Execution
A direct practical benefit of CTDE for spectrum access is zero communication overhead during execution. Agents do not need to exchange coordination messages, which would consume scarce spectrum resources and introduce latency. Instead, coordination is implicitly encoded in the learned policy. For example, two cognitive radios trained under CTDE can learn to select orthogonal channels without ever negotiating, simply by observing the same environmental cues—such as time-of-day or detected energy patterns—that were present during centralized training.
Sim-to-Real Transfer Readiness
CTDE is inherently suited for sim-to-real transfer. The centralized training phase can be conducted entirely in a high-fidelity RF digital twin or spectrum simulation environment where global state information is trivially available. The resulting decentralized policies, which rely only on local sensor observations, can then be deployed directly onto physical cognitive radios operating in the real electromagnetic environment. This decoupling allows for extensive training on rare interference events and adversarial jamming scenarios that would be impractical or dangerous to replicate in live spectrum.
Frequently Asked Questions
Addressing the most common architectural and implementation questions surrounding the Centralized Training Decentralized Execution paradigm for multi-agent reinforcement learning in spectrum access.
Centralized Training Decentralized Execution (CTDE) is a multi-agent reinforcement learning (MARL) paradigm where agents are trained with access to global state information in a centralized simulator but execute their learned policies using only local observations. During the training phase, a critic network can aggregate the observations, actions, and internal states of all agents to compute a joint value function, effectively removing the non-stationarity problem inherent in independent learners. During execution, the agents are deployed into the real distributed environment and act solely on their individual, partially observable views of the spectrum. This architecture enables scalable coordination in distributed spectrum access networks because the agents do not require a high-bandwidth communication channel to share information at inference time, yet they have learned cooperative behaviors that account for the actions of other agents.
Enabling Efficiency, Speed & Accuracy
Intelligent Analysis, Decision & Execution
We build AI systems for teams that need search across company data, workflow automation across tools, or AI features inside products and internal software.
Talk to Us
Search across company data
Give teams answers from docs, tickets, runbooks, and product data with sources and permissions.
Useful when people spend too long searching or get different answers from different systems.

Automate internal workflows
Use AI to route work, draft outputs, trigger actions, and keep approvals and logs in place.
Useful when repetitive work moves across multiple tools and teams.

Add AI to products and internal tools
Build assistants, guided actions, or decision support into the software your team or customers already use.
Useful when AI needs to be part of the product, not a separate tool.
Related Terms
Centralized Training Decentralized Execution (CTDE) bridges single-agent reinforcement learning and fully distributed multi-agent systems. The following concepts form the theoretical and practical backbone of CTDE architectures in spectrum access networks.
Multi-Agent Reinforcement Learning (MARL)
The broader field encompassing CTDE. In MARL, multiple agents learn concurrently in a shared environment. The core challenge is non-stationarity: from a single agent's perspective, the environment dynamics appear to change as other agents update their policies. CTDE directly addresses this by allowing agents to condition on global state during training, making the learning problem stationary, while preserving decentralized scalability at execution time.
Partially Observable MDP (POMDP)
The mathematical framework that rigorously models the decentralized execution phase. A POMDP extends the Markov Decision Process by acknowledging that an agent never sees the true global state. Instead, it receives a local observation that is probabilistically related to the underlying state. CTDE agents are trained to map these partial, noisy observations—such as local spectrum sensing data—to optimal actions without requiring global knowledge at runtime.
Dec-POMDP (Decentralized POMDP)
The formal model for fully cooperative multi-agent teams under partial observability. In a Dec-POMDP, agents act based on individual observation histories to maximize a single shared reward. Solving Dec-POMDPs optimally is NEXPTIME-complete, motivating the CTDE paradigm as a practical, learning-based approximation. CTDE uses centralized critics to estimate the joint value function, bypassing the intractable exact solution.
Actor-Critic Architecture
The neural network architecture underlying most CTDE implementations. The architecture splits the agent into two components:
- Actor: The decentralized policy network that maps local observations to actions. Only this component is deployed at execution.
- Critic: The centralized value network that evaluates actions using global state. This component is discarded after training. This separation is the direct mechanism enabling the CTDE paradigm.
Parameter Sharing
A technique frequently combined with CTDE to train homogeneous agents. Instead of learning N distinct policies, a single policy network is trained using the aggregated experiences of all agents. Agent-specific conditioning—appending a one-hot agent ID or local context to observations—prevents identical behavior. This dramatically reduces the number of trainable parameters and accelerates convergence in large-scale spectrum access networks.
Counterfactual Multi-Agent Policy Gradients (COMA)
A seminal CTDE algorithm that addresses the credit assignment problem: determining which agent's action contributed to a shared reward. COMA uses a centralized critic to compute a counterfactual baseline—what the joint reward would have been if a single agent had taken a different action—marginalizing out the contributions of other agents to isolate individual impact.

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.
Partnered with leading AI, data, and software stack.
How We Work
Custom AI workflows for your Business
One-fit-all AI don't work for modern businesses. At Inferensys, we aim to understand your business & custom requirements; which we use to define most efficient agentic workflows, the data, and the tools for your business.
01
Review the use case
We understand the task, the users, and where AI can actually help.
Read more02
Pick the right approach
We define what needs search, automation, or product integration.
Read more03
Build the first useful version
We implement the part that proves the value first.
Read more04
Improve from there
We add the checks and visibility needed to keep it useful.
Read moreThe first call is a practical review of your use case and the right next step.
Talk to Us