Papers › Bridging MARL to SARL: An Order-Independent Multi-Agent Transformer via Latent Consensus

Bridging MARL to SARL: An Order-Independent Multi-Agent Transformer via Latent Consensus

15 Apr 2026arXiv:2604.13472added by Syntology

Zijian Zhao, Jing Gao, Sen Li

Title, abstract, authors and date from arXiv's metadata (CC0); this paper is not in the Papers with Code archive (frozen 2025-07-28).

Cooperative multi-agent reinforcement learning (MARL) is widely used to address large joint observation and action spaces by decomposing a centralized control problem into multiple interacting agents. However, such decomposition often introduces additional challenges, including non-stationarity, unstable training, weak coordination, and limited theoretical guarantees. In this paper, we propose the Consensus Multi-Agent Transformer (CMAT), a centralized framework that bridges cooperative MARL to a hierarchical single-agent reinforcement learning (SARL) formulation. CMAT treats all agents as a unified entity and employs a Transformer encoder to process the large joint observation space. To handle the extensive joint action space, we introduce a hierarchical decision-making mechanism in which a Transformer decoder autoregressively generates a high-level consensus vector, simulating the process by which agents reach agreement on their strategies in latent space. Conditioned on this consensus, all agents generate their actions simultaneously, enabling order-independent joint decision making and avoiding the sensitivity to action-generation order in conventional Multi-Agent Transformers (MAT). This factorization allows the joint policy to be optimized using single-agent PPO while preserving expressive coordination through the latent consensus. To evaluate the proposed method, we conduct experiments on benchmark tasks from StarCraft II, Multi-Agent MuJoCo, and Google Research Football. The results show that CMAT achieves superior performance over recent centralized solutions, sequential MARL methods, and conventional MARL baselines. The code for this paper is available at:https://github.com/RS2002/CMAT .

PaperPDFCode Syntology ran

In Syntology Open this paper in Syntology's Atlas, the map of the papers in Syntology's graph and their citations.

For agents, Syntology's MCP tool lists every function and class Syntology harvested from this paper and whether it ran (how to connect): get_harvested_code_for_paper(arxiv_id="2604.13472")

Code

Syntology Ran 9 of 12 code samples harvested from 1 repository linked to this paper; 3 have no recorded run. Of those that ran: 4 ran · our draft was wrong; 5 ran with no contract checked.

By repository: found in paper text by Syntology: 12 samples from 1 repository, 9 ran. The run record, sample by sample. “Ran” means executed on a synthesized input, not that the code is correct or reproduces the paper.

PKU-MARL/Multi-Agent-Transformer found in paper text by Syntology report

Reachability, where shown, is from one Syntology probe window (2026-09-16 to 2026-09-18); repositories not probed show nothing. GitHub stars are not tracked.

Code Syntology ran Syntology

12 samples harvested; 9 ran; 0 honoured the contract we drafted; 3 have no recorded run. Read from Syntology's graph 2026-09-24; that is when this build read the record, not when the samples ran.

4ran · our draft was wrong
5ran
3unverified

Licence: 12 of the 12 samples are pointer only, meaning Syntology does not serve that copy's text. This page shows no code text for any sample; each one links to its file in the repository.

Harvested from PKU-MARL/Multi-Agent-Transformer. “Ran” means the sample executed on a synthesized input. It does not mean the output is correct, and nothing here reproduces the paper's results. “Honoured” and “violated” refer to a contract Syntology drafted from the code itself; “our draft was wrong” and “fixture could not drive it” are failures of Syntology's instrument, not of the code.

Each sample ends with its code_sha256, Syntology's identity for that exact code. An agent fetches the stored sample with Syntology's MCP tool get_code(code_sha256="…") (how to connect); click an identity to copy that call.

Repository labels, per sample. official repository: The archive marks this repository official for the paper. named in the paper: The archive records that the paper mentions this repository; it is not marked official. community (archive-listed): In the archive's code links for this paper, not marked official and not recorded as mentioned in the paper. found in paper text by Syntology: Syntology found this repository in the paper's own text; whether it is the authors' implementation is not asserted. community: Not in the archive's code links for this paper; a community repository Syntology harvested. Samples from a repository marked official are listed first. Licence labels name the repository's licence as recorded at harvest. “Pointer only” means Syntology does not serve that copy's text, for one of four reasons: no licence file was found; the licence was not identified; the licence is recorded as permissive but that copy's record is not marked cleared; or the licence is outside the permissive list Syntology serves text under (MIT, Apache-2.0, BSD and similar). Some licences outside that list permit redistribution, such as WTFPL, and GPL-3.0 under its conditions; they are simply not on the list. Hover a licence label for the reason. File links open the file on GitHub at the default branch, which may have changed since the harvest.

DecodeBlock PKU-MARL/Multi-Agent-Transformer/mat/algorithms/mat/algorithm/ma_transformer.py found in paper text by Syntology ran no licence file found · pointer only · 362c1be3708b32ec · report
EncodeBlock PKU-MARL/Multi-Agent-Transformer/mat/algorithms/mat/algorithm/ma_transformer.py found in paper text by Syntology ran · metamorphic tier: deterministic no licence file found · pointer only · 38a9cb3379b34d27 · report
Encoder PKU-MARL/Multi-Agent-Transformer/mat/algorithms/mat/algorithm/ma_transformer.py found in paper text by Syntology ran no licence file found · pointer only · 9f99db24b15d292c · report
SelfAttention PKU-MARL/Multi-Agent-Transformer/mat/algorithms/mat/algorithm/ma_transformer.py found in paper text by Syntology ran · metamorphic tier: deterministic no licence file found · pointer only · 508634b69e88baa8 · report
continuous_autoregreesive_act PKU-MARL/Multi-Agent-Transformer/mat/algorithms/mat/algorithm/ma_transformer.py found in paper text by Syntology ran · our draft was wrong no licence file found · pointer only · 59cb0ba2cc3b36c6 · report
continuous_parallel_act PKU-MARL/Multi-Agent-Transformer/mat/algorithms/mat/algorithm/ma_transformer.py found in paper text by Syntology ran no licence file found · pointer only · 80d5ea44b6503397 · report
discrete_parallel_act PKU-MARL/Multi-Agent-Transformer/mat/algorithms/mat/algorithm/ma_transformer.py found in paper text by Syntology ran · our draft was wrong no licence file found · pointer only · cdc64fb18b542a6b · report
init PKU-MARL/Multi-Agent-Transformer/mat/algorithms/mat/algorithm/ma_transformer.py found in paper text by Syntology ran · our draft was wrong no licence file found · pointer only · c00885ffa5fe61e7 · report
init_ PKU-MARL/Multi-Agent-Transformer/mat/algorithms/mat/algorithm/ma_transformer.py found in paper text by Syntology ran · our draft was wrong no licence file found · pointer only · 748385c8184d4945 · report
Decoder PKU-MARL/Multi-Agent-Transformer/mat/algorithms/mat/algorithm/ma_transformer.py found in paper text by Syntology unverified no licence file found · pointer only · da968f0f2c007dff · report
MultiAgentTransformer PKU-MARL/Multi-Agent-Transformer/mat/algorithms/mat/algorithm/ma_transformer.py found in paper text by Syntology unverified no licence file found · pointer only · 8aa233770f15e845 · report
discrete_autoregreesive_act PKU-MARL/Multi-Agent-Transformer/mat/algorithms/mat/algorithm/ma_transformer.py found in paper text by Syntology unverified no licence file found · pointer only · 55cd239026a74d42 · report

Results from the paper

The Papers with Code archive ends with its 2025-07-28 snapshot. This paper's arXiv identifier, 2604.13472, was issued in April 2026, after that date, so the archive has no leaderboard rows for it.

Report a problem or propose a change · a person checks every report against the paper or source before anything changes; decisions are listed on /corrections