TLDR: MARS is a new reinforcement learning framework that trains Large Language Models (LLMs) to improve their multi-agent reasoning by playing cooperative and competitive strategic games against themselves. It uses novel advantage estimation techniques for better credit assignment and stable training across diverse agent roles. This self-play approach enables LLMs to develop strong strategic abilities that generalize to new games and significantly boost performance in multi-agent systems on reasoning benchmarks.
Large Language Models (LLMs) are becoming incredibly powerful, but getting them to work together or compete effectively in situations involving multiple AI agents has been a significant challenge. This is crucial for developing more advanced artificial intelligence that can handle complex real-world scenarios like negotiations or collaborative software development.
Traditional reinforcement learning (RL) has been great for improving LLM reasoning in single-agent tasks. However, extending this to multi-turn, multi-agent situations is tricky. Two main problems arise: figuring out which actions contributed to a long-term outcome (credit assignment) and stabilizing the learning process when multiple agents with different roles are involved.
A new framework called MARS (Multi-Agent Reasoning of LLMs through Self-play in Strategic Games) has been introduced to tackle these issues. Developed by researchers including Huining Yuan, Zelai Xu, and Yu Wang, MARS is an end-to-end reinforcement learning system that encourages LLMs to develop multi-agent reasoning skills by playing strategic games against themselves. You can find the full details of their work in the research paper available here.
How MARS Works
MARS introduces two key innovations. First, it uses a “turn-level advantage estimator.” Imagine a long game where many moves lead to a win or loss. This estimator helps the AI understand the impact of each individual move, rather than just getting a single reward at the very end. This makes the learning signal much more precise.
Second, MARS employs “agent-specific advantage normalization.” In games with different player roles (like Player 1 vs. Player 2, or different roles in a cooperative game), the expected outcomes can vary greatly. This normalization technique ensures that each agent’s learning is calibrated relative to its specific role, preventing instability that could arise from trying to apply a single standard across all diverse roles.
The MARS framework trains LLMs using self-play in a diverse set of cooperative and competitive games. This includes games like Tic-Tac-Toe (for perfect-information adversarial planning), Kuhn Poker (for imperfect-information adversarial reasoning), and Mini Hanabi (for imperfect-information cooperative social intelligence). By learning to play these games against itself, the MARS agent develops robust strategic abilities.
Also Read:
- AI Agents Learn and Adapt Through Dialogue to Tackle Complex Problems
- Enhancing AI Model Alignment by Resolving Feedback Inconsistencies
Key Findings and Impact
Experiments showed that MARS agents, trained on a Qwen3-4B model, significantly improved their strategic abilities in both training and new, unseen games, with performance gains of up to 28.7%. More importantly, the skills learned through self-play in these games transferred to real-world multi-agent systems. When integrated into competitive frameworks like MAD and cooperative ones like AutoGen, MARS agents achieved notable performance gains on reasoning benchmarks, including a 10.0% improvement on AIME and 12.5% on GPQA-Diamond.
Qualitative analysis of the agents’ thought processes revealed that MARS helps LLMs develop sophisticated multi-agent skills. For instance, agents learned “Role-Aware Strategy,” understanding their position (e.g., “second-move player” in Tic-Tac-Toe) and adapting their approach. They also developed “Intent Recognition,” inferring a teammate’s hidden intentions in cooperative games like Hanabi, a skill that transferred to understanding collaborator uncertainty in AutoGen.
Ablation studies confirmed the importance of self-play over training against fixed opponents, as fixed-opponent training led to overfitting and poor generalization. Both the turn-level advantage estimator and agent-specific advantage normalization were also shown to be crucial for effective learning and performance.
In essence, MARS demonstrates that training LLMs through self-play in strategic games is a powerful method for developing generalizable multi-agent reasoning capabilities. This approach paves the way for creating more sophisticated and socially intelligent AI agents capable of handling complex interactions.


