REVIEW 4 major objections 5 minor 2 cited by
The paper claims RL fine-tuning lets a 14-billion-parameter model predict MOBA macro-actions at 90.91% accuracy, ahead of Deepseek-R1's 86.67%.
Reviewed by Pith at T0; open to challenge. T0 means a machine referee read the full paper against a public rubric. the ladder, T0–T4 →
A reinforcement-learning pipeline for predicting macro-actions in Honor of Kings improves action prediction accuracy, but the method is imitation of human replay labels, not the claimed environmental interaction.
T0 review reviewed 2026-08-05 challenge →
load-bearing objection A clean behavioral-cloning pipeline with an overblown 'procedural knowledge' framing; worth a referee's time only if the authors reframe or test in a live environment. the 4 major comments →
Think in Games: Learning to Reason in Games via Reinforcement Learning with Large Language Models
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
Core claim
On its own terms, TiG's central claim is that declarative and procedural knowledge can be bridged by reformulating RL-based decision-making as a language modeling task: the LLM generates a language-guided policy (a set of macro-actions and a reasoning chain), which is then refined iteratively through online reinforcement learning. Training is multi-stage: SFT on reasoning distilled from Deepseek-R1, then GRPO with a rule-based binary reward that assigns 1 if the predicted action equals the replay-derived ground-truth action and 0 otherwise. The reported result is that Qwen-3-14B + SFT + GRPO reaches 90.91% on macro-action prediction, outperforming Deepseek-R1 (86.67%) and Qwen-2.5-32B + GRPO
What carries the argument
The central object is the macro-action space: a fixed set of 40 high-level team objectives (push top lane, secure dragon, defend base, etc.) that abstracts away low-level control. The policy model maps a JSON-encoded game state to a subset of these actions plus a <think> reasoning chain. The training engine is GRPO: for each game-state prompt, a group of completions is generated, each scored by a rule-based verifier comparing the predicted action to the replay-derived ground truth; rewards are normalized within the group into advantages, and the policy is updated with a clipped surrogate loss plus KL regularization to a reference policy. The macro-action abstraction and the binary reward tog
Load-bearing premise
The central claim rests on treating a match between the model's predicted macro-action and a human player's recorded macro-action as the reward signal; if those human labels are imperfect, not the right abstraction, or not predictive of winning outcomes, the model may learn to imitate labeling artifacts rather than true game strategy.
What would settle it
Put the trained policy into live Honor of Kings matches (or a high-fidelity simulator) and compare win rate, tower damage, and objective control against the base LLM and against random macro-action baselines; if higher macro-action prediction accuracy does not translate to better in-game outcomes, the claim that TiG instills procedural knowledge is falsified.
If this is right
- A 14-billion-parameter model can match or beat a 671-billion-parameter general reasoning model on constrained strategic decision tasks, suggesting parameter count is not the binding constraint once domain-specific RL is applied.
- GRPO with rule-based rewards is the main driver of improvement: Qwen-2.5-32B jumps from 66.67% to 86.84% with GRPO alone, and GRPO alone beats SFT alone on Qwen2.5-14B.
- Trained models keep their general language abilities: scores on MMLU, CEval, BBH, and IfEval remain stable or improve slightly, so domain-specific RL does not cause catastrophic forgetting.
- Because decisions come with natural-language reasoning, the resulting policy is inspectable by human players, unlike black-box RL agents.
- The framework is presented as transferable beyond MOBAs to other interactive environments where language can serve as the policy interface.
Where Pith is reading between the lines
- The implemented reward is agreement with recorded human macro-actions, not outcome-based game reward, so TiG as described is closer to RL-assisted behavioral cloning than to learning from win/loss consequences; a live-game test is needed to confirm the procedural-knowledge claim.
- Performance likely depends on the expert-designed 40-action taxonomy and priority relabeling; porting TiG to a new game means rebuilding this abstraction, and part of the reported gain may come from this human prior rather than from RL itself.
- The reasoning traces may be post-hoc rationalizations; to test faithfulness, one could ablate parts of the game state and check whether the model's stated reasons change only when the relevant feature is removed.
- If the accuracy result transfers, a practical route emerges: take a moderately sized instruction-tuned model, distill reasoning from a large reasoner into it, then refine on replay-labeled decisions, obtaining deployable game assistants at a fraction of the inference cost.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes Think in Games (TiG), a framework to train LLMs for macro-level strategic decision-making in the MOBA game Honor of Kings. The method combines SFT on DeepSeek-R1 distilled outputs with GRPO reinforcement learning, where the reward is a binary match between the predicted macro-action and a human replay label. The authors claim that TiG enables LLMs to acquire procedural knowledge through direct interaction with game environments, and that a 14B model can surpass Deepseek-R1 on action prediction while preserving general capabilities. The paper reports action-prediction accuracy, a TiG-QA generalization evaluation, general NLP benchmark results, and qualitative case studies.
Significance. If the central claim were supported, the paper would be significant: it would show that a relatively small, interpretable LLM can match or exceed a much larger reasoning model on game-strategy tasks through environmental interaction, with potential applications to explainable game agents. The paper has several strengths: a clearly specified multi-stage training pipeline, evaluation on general LLM benchmarks showing that domain training does not degrade broad capabilities, a concrete error taxonomy, and qualitative case studies. However, the core claim of learning from environmental feedback is not supported by the method as written, and one of the paper's own tables directly contradicts a headline comparison. These issues are load-bearing for the paper's stated contribution.
major comments (4)
- [§3.2, Eq. (4)] The reward is rt = 1 iff the predicted macro-action equals A*_t obtained from replay data. No action is executed in a live environment, no state transition is observed, and no win/loss or outcome-based reward is used. This is supervised label matching, not reinforcement learning from environmental feedback. The abstract, Figure 1 caption, and §7 repeatedly claim 'direct interaction with game environments' and 'environmental feedback', but the method as written does not interact with an environment at all. A concrete test would be to deploy the policy in a live HoK environment or to evaluate it with an outcome-based metric such as win rate; without that, the procedural-knowledge claim is unsupported.
- [§4.4, Table 3] The text states that TiG 'achieves results comparable to Deepseek-R1' on TiG-QA, but Table 3 shows Deepseek-R1 ahead on both question types: strong-related correct responses (score 2) are 57.14% for Deepseek-R1 vs 40.00% for Qwen-2.5-32B + GRPO, and weak-related correct responses are 79.63% vs 37.78%. This directly contradicts the 'comparable' claim. The paper's explanation that Deepseek-R1 excels because the questions rely on web knowledge rather than game interaction also undercuts the paper's own argument that TiG's value comes from game-grounded procedural understanding.
- [§4.3, Table 2a vs. §3.2, Eq. (4)] The main action-prediction evaluation measures accuracy against the same human replay labels A*_t used to compute the training reward in Eq. (4). The reported accuracy is therefore the fitted training objective, not an independent measure of game competence. The TiG-QA evaluation is not circular, but as noted above it does not support the claim that TiG surpasses Deepseek-R1. An independent evaluation—e.g., expert human judgment on held-out states or a live-game outcome metric—is needed before the central claim can be accepted.
- [§4.1, §6] The abstract and conclusion claim that TiG achieves 'competitive performance with dramatically lower data and computational demands compared to conventional RL methods.' However, the experiments compare only against LLM baselines (Qwen variants, Deepseek-R1, QwQ-32B); no conventional RL agent (e.g., PPO- or DQN-based MOBA agents) is included. This claim is therefore unsupported by the reported experiments.
minor comments (5)
- [§4.2] Model names are inconsistent: 'Qwen2.5-14B' and 'Qwen-2.5-14B' are used interchangeably. Please standardize.
- [Table 3] The table columns are labeled '0', '1', '2' with the caption 'Numbers indicate count (percentage) of correct responses.' It is unclear whether entries are counts, percentages, or both; sample sizes per row should be stated.
- [Table 2a] QwQ-32B appears in the table but is not listed in the baselines in §4.1 and no citation or access link is provided.
- [Figure 1 caption] The caption says the model is updated using a 'rule-based verifier' in the 'game environment.' Since the verifier is Eq. (4), matching a replay label, the caption should not imply live environmental feedback.
- [§7] The Limitations section states that TiG 'still requires a substantial amount of environment interaction.' This is inconsistent with the method description in §3, where no environment interaction occurs. Either the limitation should be reworded or the method description should be corrected.
Circularity Check
The main action-prediction accuracy and the GRPO reward are the same binary match against human replay labels, so the headline improvement is a fit to the training objective, not independent evidence of procedural game knowledge.
specific steps
-
fitted input called prediction
[Section 3.2, Eq. (4); Section 4.3, Table 2a]
"Formally, given a predicted action ˆAt at time step t and the corresponding ground truth action A∗t obtained from the replay data, the reward rt is defined as: rt = {1, if ˆAt = A∗t , 0, otherwise. (4)"
This is the reward optimized by GRPO. The headline result in Table 2a is 'Accuracy (%)' on the Action Prediction Task, evaluated as the same binary match against the same replay-derived ground-truth actions. The model is trained to maximize exactly this quantity, so the reported gains (e.g., Qwen-3-14B reaching 90.91%) measure fit to the training signal rather than independent decision quality or environmental feedback.
-
renaming known result
[Abstract; Section 3.2]
"LLMs generate language-guided policies, which are refined iteratively through online reinforcement learning based on environmental feedback."
The 'environmental feedback' is, by Eq. (4), only equality with a human macro-action label from replay data (relabeled by a priority hierarchy). No live state transition, win/loss, or outcome-based reward is used. The paper's central claim that TiG acquires procedural knowledge through direct interaction with game environments is thus a renaming of supervised label matching / behavioral cloning as environmental RL.
full rationale
The central circularity is that the training reward and the main evaluation metric are identical: both are binary matches between the predicted macro-action and the human replay label A*_t. Therefore the action-prediction results in Table 2a are a direct measure of how well the model fits the human-label distribution it was optimized on, not an independent test of procedural competence. The paper's framing of this as 'environmental feedback' from 'direct interaction' is unsupported by the method as written. The general benchmarks (MMLU, BBH, IfEval, etc.) provide independent evidence that the training does not destroy general LLM capabilities, which prevents a higher score, but they do not test game decision quality. Table 3 further shows the trained model underperforms Deepseek-R1 on game-state QA, undercutting the broader procedural-understanding claim. Overall, partial circularity (score 6): the headline prediction reduces by construction to the training objective.
Axiom & Free-Parameter Ledger
free parameters (6)
- Macro-action space size K=40 =
40
- Relabeling window L_fill =
not reported
- Relabeling window L_overwrite =
not reported
- Priority hierarchy for action labels =
expert-defined ordering
- GRPO group size G, clip epsilon, KL coefficient beta =
not reported
- Number of RL steps per model =
160, 360, 480, 600, 2000
axioms (5)
- domain assumption Human replay macro-actions are a reliable proxy for optimal strategy
- domain assumption Matching human action labels confers procedural understanding
- domain assumption The JSON game state contains all decision-relevant information
- ad hoc to paper The expert-defined priority hierarchy correctly orders action importance
- standard math GRPO's group-relative normalization is suitable for this reward distribution
invented entities (1)
-
Macro-level action space A (40 actions)
no independent evidence
Cite this review
Pith. "Pith review of Think in Games: Learning to Reason in Games via Reinforcement Learning with Large Language Models." pith.science (2026). https://pith.science/paper/Z6OBPZHY
@misc{pith2026250821365,
author = {Pith},
title = {Pith review of: Think in Games: Learning to Reason in Games via Reinforcement Learning with Large Language Models},
year = {2026},
howpublished = {\url{https://pith.science/paper/Z6OBPZHY}},
note = {Machine review of arXiv:2508.21365}
}
read the original abstract
Large language models (LLMs) excel at complex reasoning tasks such as mathematics and coding, yet they frequently struggle with simple interactive tasks that young children perform effortlessly. This discrepancy highlights a critical gap between declarative knowledge (knowing about something) and procedural knowledge (knowing how to do something). Although traditional reinforcement learning (RL) agents can acquire procedural knowledge through environmental interaction, they often operate as black boxes and require substantial training data. In contrast, LLMs possess extensive world knowledge and reasoning capabilities, but are unable to effectively convert this static knowledge into dynamic decision-making in interactive settings. To address this challenge, we propose Think in Games (TiG), a novel framework that empowers LLMs to develop procedural understanding through direct interaction with game environments, while retaining their inherent reasoning and explanatory abilities. Specifically, TiG reformulates RL-based decision-making as a language modeling task: LLMs generate language-guided policies, which are refined iteratively through online reinforcement learning based on environmental feedback. Our experimental results show that TiG successfully bridges the gap between declarative and procedural knowledge, achieving competitive performance with dramatically lower data and computational demands compared to conventional RL methods. Moreover, TiG provides step-by-step natural language explanations for its decisions, greatly improving transparency and interpretability in complex interactive tasks.
Figures
Forward citations
Cited by 2 Pith papers
-
SyncPlan: Long-Horizon LLM Coordination with Explicit Synchronization and Adaptive Correction
A plan-execute-correct framework with explicit wait primitives and a learned plan-staleness detector enables LLM-based multi-agent coordination that is both faster and more adaptive than repeated-invocation baselines.
-
Agentic Environment Engineering for Large Language Models: A Survey of Environment Modeling, Synthesis, Evaluation, and Application
This survey categorizes agentic environments for LLMs by eight attributes and domains, introduces symbolic and neural synthesis paradigms with evaluation, and outlines four agent evolution pathways plus three environm...
Reference graph
Works this paper leans on
-
[1]
Cause and Effect: Can Large Language Models Truly Understand Causality?
Swagata Ashwani, Kshiteesh Hegde, Nishith Reddy Mannuru, Mayank Jindal, Dushyant Singh Sengar, Krishna Chaitanya Rao Kathala, Dishant Banga, Vinija Jain, and Aman Chadha. Cause and effect: Can large language models truly understand causality? Proceedings of the AAAI Symposium Series, 2024. doi:10.48550/arXiv.2402.18139
work page internal anchor Pith review Pith/arXiv arXiv doi:10.48550/arxiv.2402.18139 2024
-
[2]
M. G. Bellemare, Y. Naddaf, J. Veness, and M. Bowling. The arcade learning environment: An evaluation platform for general agents. Journal of Artificial Intelligence Research, 47: 0 253–279, June 2013. ISSN 1076-9757. doi:10.1613/jair.3912. URL http://dx.doi.org/10.1613/jair.3912
-
[3]
Deepseek-r1: Incentivizing reasoning capability in llms via reinforcement learning, 2025
DeepSeek-AI, Daya Guo, Dejian Yang, Haowei Zhang, Junxiao Song, Ruoyu Zhang, Runxin Xu, et al. Deepseek-r1: Incentivizing reasoning capability in llms via reinforcement learning, 2025. URL https://arxiv.org/abs/2501.12948
Pith/arXiv arXiv 2025
-
[4]
Mapeval: A map-based evaluation of geo-spatial reasoning in foundation models
Mahir Labib Dihan, Md Tanvir Hassan, Md Tanvir Parvez, Md Hasebul Hasan, Md Almash Alam, Muhammad Aamir Cheema, Mohammed Eunus Ali, and Md Rizwan Parvez. Mapeval: A map-based evaluation of geo-spatial reasoning in foundation models. arXiv preprint arXiv: 2501.00316, 2024
Pith/arXiv arXiv 2024
-
[5]
Bayeschess: A computer chess program based on bayesian networks
Antonio Fernández and Antonio Salmerón. Bayeschess: A computer chess program based on bayesian networks. Pattern Recognition Letters, 29 0 (8): 0 1154--1159, 2008. ISSN 0167-8655. doi:https://doi.org/10.1016/j.patrec.2007.06.013. URL https://www.sciencedirect.com/science/article/pii/S0167865507002127. Pattern Recognition in Interdisciplinary Perception an...
-
[6]
Jose M. Font and Tobias Mahlmann. Dota2 bot competition. IEEE Transactions on Games, 11 0 (3): 0 285–289, September 2019. ISSN 2475-1510. doi:10.1109/tg.2018.2834566. URL http://dx.doi.org/10.1109/TG.2018.2834566
-
[7]
Enabling self-improving agents to learn at test time with human-in-the-loop guidance
Yufei He, Ruoyu Li, Alex Chen, Yue Liu, Yulin Chen, Yuan Sui, Cheng Chen, Yi Zhu, Luca Luo, Frank Yang, and Bryan Hooi. Enabling self-improving agents to learn at test time with human-in-the-loop guidance. arXiv preprint arXiv: 2507.17131, 2025
-
[8]
Measuring massive multitask language understanding
Dan Hendrycks, Collin Burns, Steven Basart, Andy Zou, Mantas Mazeika, Dawn Song, and Jacob Steinhardt. Measuring massive multitask language understanding. In 9th International Conference on Learning Representations, ICLR 2021, Virtual Event, Austria, May 3-7, 2021 . OpenReview.net, 2021. URL https://openreview.net/forum?id=d7KBjmI3GmQ
2021
-
[9]
Openrlhf: An easy-to-use, scalable and high-performance rlhf framework
Jian Hu, Xibin Wu, Zilin Zhu, Xianyu, Weixun Wang, Dehao Zhang, and Yu Cao. Openrlhf: An easy-to-use, scalable and high-performance rlhf framework. arXiv preprint arXiv:2405.11143, 2024 a
Pith/arXiv arXiv 2024
-
[10]
A survey on large language model-based game agents
Sihao Hu, Tiansheng Huang, Gaowen Liu, Ramana Rao Kompella, Fatih Ilhan, Selim Furkan Tekin, Yichang Xu, Zachary Yahn, and Ling Liu. A survey on large language model-based game agents. arXiv preprint arXiv: 2404.02039, 2024 b
Pith/arXiv arXiv 2024
-
[11]
Pokellmon: A human-parity agent for pokemon battles with large language models, 2024 c
Sihao Hu, Tiansheng Huang, and Ling Liu. Pokellmon: A human-parity agent for pokemon battles with large language models, 2024 c . URL https://arxiv.org/abs/2402.01118
Pith/arXiv arXiv 2024
-
[12]
C-eval: A multi-level multi-discipline chinese evaluation suite for foundation models
Yuzhen Huang, Yuzhuo Bai, Zhihao Zhu, Junlei Zhang, Jinghan Zhang, Tangjun Su, Junteng Liu, Chuancheng Lv, Yikai Zhang, jiayi lei, Yao Fu, Maosong Sun, and Junxian He. C-eval: A multi-level multi-discipline chinese evaluation suite for foundation models. In A. Oh, T. Naumann, A. Globerson, K. Saenko, M. Hardt, and S. Levine, editors, Advances in Neural In...
work page 2023
-
[13]
Search-r1: Training llms to reason and leverage search engines with reinforcement learning
Bowen Jin, Hansi Zeng, Zhenrui Yue, Jinsung Yoon, Sercan Arik, Dong Wang, Hamed Zamani, and Jiawei Han. Search-r1: Training llms to reason and leverage search engines with reinforcement learning. arXiv preprint arXiv: 2503.09516, 2025
Pith/arXiv arXiv 2025
-
[14]
Oleh Kolner, Thomas Ortner, Stanisław Woźniak, and Angeliki Pantazi. Mind the gap: Glimpse-based active perception improves generalization and sample efficiency of visual reasoning. arXiv preprint arXiv: 2409.20213, 2024
work page internal anchor Pith review Pith/arXiv arXiv 2024
-
[15]
School chinese benchmark, 2018
lanhin . School chinese benchmark, 2018. URL https://github.com/lanhin/SchoolChinese
work page 2018
-
[16]
Codei/o: Condensing reasoning patterns via code input-output prediction
Junlong Li, Daya Guo, Dejian Yang, Runxin Xu, Yu Wu, and Junxian He. Codei/o: Condensing reasoning patterns via code input-output prediction. arXiv preprint arXiv: 2502.07316, 2025
Pith/arXiv arXiv 2025
-
[17]
Simpo: Simple preference optimization with a reference-free reward
Yu Meng, Mengzhou Xia, and Danqi Chen. Simpo: Simple preference optimization with a reference-free reward. Advances in Neural Information Processing Systems, 37: 0 124198--124235, 2024
2024
-
[18]
Playing atari with deep reinforcement learning
Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Alex Graves, Ioannis Antonoglou, Daan Wierstra, and Martin Riedmiller. Playing atari with deep reinforcement learning. arXiv preprint arXiv: 1312.5602, 2013
Pith/arXiv arXiv 2013
-
[19]
Creating pro-level AI for a real-time fighting game using deep reinforcement learning
Inseok Oh, Seungeun Rho, Sangbin Moon, Seongho Son, Hyoil Lee, and Jinyun Chung. Creating pro-level AI for a real-time fighting game using deep reinforcement learning. IEEE Trans. Games , 14 0 (2): 0 212--220, 2022. doi:10.1109/TG.2021.3049539. URL https://doi.org/10.1109/TG.2021.3049539
-
[20]
Wainwright, Pamela Mishkin, Chong Zhang, Sandhini Agarwal, Katarina Slama, et al
Long Ouyang, Jeffrey Wu, Xu Jiang, Diogo Almeida, Carroll L. Wainwright, Pamela Mishkin, Chong Zhang, Sandhini Agarwal, Katarina Slama, et al. Training language models to follow instructions with human feedback. In Sanmi Koyejo, S. Mohamed, A. Agarwal, Danielle Belgrave, K. Cho, and A. Oh, editors, Advances in Neural Information Processing Systems 35: Ann...
work page 2022
-
[21]
Manning, Stefano Ermon, and Chelsea Finn
Rafael Rafailov, Archit Sharma, Eric Mitchell, Christopher D. Manning, Stefano Ermon, and Chelsea Finn. Direct preference optimization: Your language model is secretly a reward model. In Alice Oh, Tristan Naumann, Amir Globerson, Kate Saenko, Moritz Hardt, and Sergey Levine, editors, Advances in Neural Information Processing Systems 36: Annual Conference ...
2023
-
[22]
Proximal policy optimization algorithms
John Schulman, Filip Wolski, Prafulla Dhariwal, Alec Radford, and Oleg Klimov. Proximal policy optimization algorithms. arXiv preprint arXiv: 1707.06347, 2017
Pith/arXiv arXiv 2017
-
[23]
Zhihong Shao, Peiyi Wang, Qihao Zhu, Runxin Xu, Junxiao Song, Xiao Bi, Haowei Zhang, Mingchuan Zhang, Y. K. Li, Y. Wu, and Daya Guo. Deepseekmath: Pushing the limits of mathematical reasoning in open language models, 2024. URL https://arxiv.org/abs/2402.03300
Pith/arXiv arXiv 2024
-
[24]
Megatron-lm: Training multi-billion parameter language models using model parallelism
Mohammad Shoeybi, Mostofa Patwary, Raul Puri, Patrick LeGresley, Jared Casper, and Bryan Catanzaro. Megatron-lm: Training multi-billion parameter language models using model parallelism. arXiv preprint arXiv: 1909.08053, 2019
Pith/arXiv arXiv 1909
-
[25]
Mastering the game of go with deep neural networks and tree search
David Silver, Aja Huang, Chris J Maddison, Arthur Guez, Laurent Sifre, George Van Den Driessche, Julian Schrittwieser, Ioannis Antonoglou, Veda Panneershelvam, Marc Lanctot, et al. Mastering the game of go with deep neural networks and tree search. nature, 529 0 (7587): 0 484--489, 2016
2016
-
[26]
Bayes' bluff: Opponent modelling in poker
Finnegan Southey, Michael P Bowling, Bryce Larson, Carmelo Piccione, Neil Burch, Darse Billings, and Chris Rayner. Bayes' bluff: Opponent modelling in poker. arXiv preprint arXiv:1207.1411, 2012
Pith/arXiv arXiv 2012
-
[27]
Brown, Adam Santoro, Aditya Gupta, et al
Aarohi Srivastava, Abhinav Rastogi, Abhishek Rao, Abu Awal Md Shoeb, Abubakar Abid, Adam Fisch, Adam R. Brown, Adam Santoro, Aditya Gupta, et al. Beyond the imitation game: Quantifying and extrapolating the capabilities of language models. Trans. Mach. Learn. Res., 2023, 2023. URL https://openreview.net/forum?id=uyTL5Bvosj
work page 2023
-
[28]
Yuan Sui, Yufei He, Tri Cao, Simeng Han, Yulin Chen, and Bryan Hooi. Meta-reasoner: Dynamic guidance for optimized inference-time reasoning in large language models, 2025. URL https://arxiv.org/abs/2502.19918
Pith/arXiv arXiv 2025
-
[29]
Mirac Suzgun, Nathan Scales, Nathanael Sch \" a rli, Sebastian Gehrmann, Yi Tay, Hyung Won Chung, Aakanksha Chowdhery, Quoc V. Le, Ed H. Chi, Denny Zhou, and Jason Wei. Challenging big-bench tasks and whether chain-of-thought can solve them. In Anna Rogers, Jordan L. Boyd - Graber, and Naoaki Okazaki, editors, Findings of the Association for Computational...
doi:10.18653/v1 2023
-
[30]
Charactereval: A chinese benchmark for role-playing conversational agent evaluation
Quan Tu, Shilong Fan, Zihang Tian, and Rui Yan. Charactereval: A chinese benchmark for role-playing conversational agent evaluation. arXiv preprint arXiv: 2401.01275, 2024
Pith/arXiv arXiv 2024
-
[31]
Starcraft ii: A new challenge for reinforcement learning, 2017
Oriol Vinyals, Timo Ewalds, Sergey Bartunov, Petko Georgiev, et al. Starcraft ii: A new challenge for reinforcement learning, 2017. URL https://arxiv.org/abs/1708.04782
Pith/arXiv arXiv 2017
-
[32]
Voyager: An open-ended embodied agent with large language models
Guanzhi Wang, Yuqi Xie, Yunfan Jiang, Ajay Mandlekar, Chaowei Xiao, Yuke Zhu, Linxi (Jim) Fan, and Anima Anandkumar. Voyager: An open-ended embodied agent with large language models. Trans. Mach. Learn. Res., 2023. doi:10.48550/arXiv.2305.16291
-
[33]
Zihao Wang, Shaofei Cai, Guanzhou Chen, Anji Liu, Xiaojian Ma, and Yitao Liang. Describe, explain, plan and select: Interactive planning with large language models enables open-world multi-task agents, 2024. URL https://arxiv.org/abs/2302.01560
Pith/arXiv arXiv 2024
-
[34]
Mind's eye of llms: Visualization-of-thought elicits spatial reasoning in large language models
Wenshan Wu, Shaoguang Mao, Yadong Zhang, Yan Xia, Li Dong, Lei Cui, and Furu Wei. Mind's eye of llms: Visualization-of-thought elicits spatial reasoning in large language models. arXiv preprint arXiv: 2404.03622, 2024
Pith/arXiv arXiv 2024
-
[35]
Agents play thousands of 3d video games
Zhongwen Xu, Xianliang Wang, Siyi Li, Tao Yu, Liang Wang, Qiang Fu, and Wei Yang. Agents play thousands of 3d video games. arXiv preprint arXiv: 2503.13356, 2025
Pith/arXiv arXiv 2025
-
[36]
Policy-to-language: Train llms to explain decisions with flow-matching generated rewards
Xinyi Yang, Liang Zeng, Heng Dong, Chao Yu, Xiaoran Wu, Huazhong Yang, Yu Wang, Milind Tambe, and Tonghan Wang. Policy-to-language: Train llms to explain decisions with flow-matching generated rewards. arXiv preprint arXiv: 2502.12530, 2025
-
[37]
Mastering complex control in moba games with deep reinforcement learning
Deheng Ye, Zhao Liu, Mingfei Sun, Bei Shi, Peilin Zhao, Hao Wu, Hongsheng Yu, Shaojie Yang, Xipeng Wu, Qingwei Guo, et al. Mastering complex control in moba games with deep reinforcement learning. In Proceedings of the AAAI conference on artificial intelligence, volume 34, pages 6672--6679, 2020
work page 2020
-
[38]
C har P oet: A C hinese classical poetry generation system based on token-free LLM
Chengyue Yu, Lei Zang, Jiaotuan Wang, Chenyi Zhuang, and Jinjie Gu. C har P oet: A C hinese classical poetry generation system based on token-free LLM . In Yixin Cao, Yang Feng, and Deyi Xiong, editors, Proceedings of the 62nd Annual Meeting of the Association for Computational Linguistics (Volume 3: System Demonstrations), pages 315--325, Bangkok, Thaila...
-
[39]
Training interactive agent in large fps game map with rule-enhanced reinforcement learning
Chen Zhang, Huan Hu, Yuan Zhou, Qiyang Cao, Ruochen Liu, Wenya Wei, and Elvis S Liu. Training interactive agent in large fps game map with rule-enhanced reinforcement learning. In 2024 IEEE Conference on Games (CoG), pages 1--8. IEEE, 2024
work page 2024
-
[40]
Ape210k: A large-scale and template-rich dataset of math word problems, 2020
Wei Zhao, Mingyue Shang, Yang Liu, Liang Wang, and Jingming Liu. Ape210k: A large-scale and template-rich dataset of math word problems, 2020. URL https://arxiv.org/abs/2009.11506
Pith/arXiv arXiv 2020
-
[41]
Instruction-following evaluation for large language models
Jeffrey Zhou, Tianjian Lu, Swaroop Mishra, Siddhartha Brahma, Sujoy Basu, Yi Luan, Denny Zhou, and Le Hou. Instruction-following evaluation for large language models. arXiv preprint arXiv: 2311.07911, 2023
Pith/arXiv arXiv 2023
-
[42]
Pokerbench: Training large language models to become professional poker players
Richard Zhuang, Akshat Gupta, Richard Yang, Aniket Rahane, Zhengyu Li, and Gopala Anumanchipalli. Pokerbench: Training large language models to become professional poker players. arXiv preprint arXiv:2501.08328, 2025
Pith/arXiv arXiv 2025
This paper was first reviewed by deepseek-v4-flash on August 5, 2026.
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.