Text Generation
PEFT
Safetensors
game-theory
grpo
reinforcement-learning
reasoning
qwen2.5
lora
conversational
Eval Results (legacy)
Instructions to use Alogotron/GameTheory-Reasoner with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use Alogotron/GameTheory-Reasoner with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("/home/beta1/gt-training/phase1_merged") model = PeftModel.from_pretrained(base_model, "Alogotron/GameTheory-Reasoner") - Notebooks
- Google Colab
- Kaggle
Add Related Work (IJCAI survey, DeepMind SHOR-PSRO) and BibTeX citation
Browse files
README.md
CHANGED
|
@@ -181,6 +181,30 @@ print(response)
|
|
| 181 |
- **Phase 1 Model**: [Alogotron/GameTheory-Solver](https://huggingface.co/Alogotron/GameTheory-Solver) - SFT fine-tuned solver
|
| 182 |
- **Demo**: [Game Theory Solver Space](https://huggingface.co/spaces/Alogotron/GameTheory-Solver)
|
| 183 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 184 |
## License
|
| 185 |
|
| 186 |
Apache-2.0
|
|
|
|
| 181 |
- **Phase 1 Model**: [Alogotron/GameTheory-Solver](https://huggingface.co/Alogotron/GameTheory-Solver) - SFT fine-tuned solver
|
| 182 |
- **Demo**: [Game Theory Solver Space](https://huggingface.co/spaces/Alogotron/GameTheory-Solver)
|
| 183 |
|
| 184 |
+
|
| 185 |
+
|
| 186 |
+
---
|
| 187 |
+
|
| 188 |
+
## 📚 Related Work
|
| 189 |
+
|
| 190 |
+
- **"Game Theory Meets Large Language Models: A Systematic Survey"** — IJCAI 2025 ([arxiv:2502.09053](https://arxiv.org/abs/2502.09053)) — The definitive survey on game theory × LLMs, covering RLHF alignment, multi-agent interactions, and strategic reasoning.
|
| 191 |
+
- **DeepMind SHOR-PSRO** (April 2026) — LLM-driven rewriting of game theory algorithms that outperformed hand-designed baselines ([MarkTechPost](https://www.marktechpost.com/2026/04/03/google-deepminds-research-lets-an-llm-rewrite-its-own-game-theory-algorithms-and-it-outperformed-the-experts/)).
|
| 192 |
+
- **GT-HarmBench** — Game-theoretic framing for AI safety benchmarking ([arxiv:2602.12316](https://arxiv.org/abs/2602.12316)).
|
| 193 |
+
|
| 194 |
+
|
| 195 |
+
## 📄 Citation
|
| 196 |
+
|
| 197 |
+
```bibtex
|
| 198 |
+
@model{alogotron_gametheory_reasoner_2026,
|
| 199 |
+
author = {Alogotron},
|
| 200 |
+
title = {GameTheory-Reasoner: GRPO-Trained Game Theory Reasoning Model},
|
| 201 |
+
year = {2026},
|
| 202 |
+
publisher = {Hugging Face},
|
| 203 |
+
url = {https://huggingface.co/Alogotron/GameTheory-Reasoner},
|
| 204 |
+
note = {Phase 2 GRPO adapter with +6\% reasoning quality improvement}
|
| 205 |
+
}
|
| 206 |
+
```
|
| 207 |
+
|
| 208 |
## License
|
| 209 |
|
| 210 |
Apache-2.0
|