Language-based Trial and Error Falls Behind in the Era of Experience
Haoyu Wang, Guozheng Ma, Shugang Cui, Yilun Kong, Haotian Luo, Li Shen, Mengya Gao, Yichao Wu, Xiaogang Wang, Dacheng Tao
TL;DR
Language-based Trial and Error Falls Behind in the Era of Experience addresses the limitation of large language models when facing unseen, nonlinguistic environments due to expensive exploration and high-dimensional action spaces. The authors introduce SCOUT, a framework that delegates exploration to lightweight scouts to rapidly learn environmental dynamics, then distills these trajectories into the LLM via supervised fine-tuning before refining with multi-turn RL. Across six unseen symbolic and spatial tasks, including long-horizon challenges like 2048 and Rubik's Cube, SCOUT achieves an average score of 0.86 on Qwen2.5-3B-Instruct and significantly outperforms baselines while reducing GPU-hours by about 60%. This approach demonstrates that sub-scale collaboration can unlock latent world knowledge in LLMs, enabling scalable, resource-efficient language-based agents with strong generalization to unseen environments.
Abstract
While Large Language Models (LLMs) excel in language-based agentic tasks, their applicability to unseen, nonlinguistic environments (e.g., symbolic or spatial tasks) remains limited. Previous work attributes this performance gap to the mismatch between the pretraining distribution and the testing distribution. In this work, we demonstrate the primary bottleneck is the prohibitive cost of exploration: mastering these tasks requires extensive trial-and-error, which is computationally unsustainable for parameter-heavy LLMs operating in a high dimensional semantic space. To address this, we propose SCOUT (Sub-Scale Collaboration On Unseen Tasks), a novel framework that decouples exploration from exploitation. We employ lightweight "scouts" (e.g., small MLPs) to probe environmental dynamics at a speed and scale far exceeding LLMs. The collected trajectories are utilized to bootstrap the LLM via Supervised Fine-Tuning (SFT), followed by multi-turn Reinforcement Learning (RL) to activate its latent world knowledge. Empirically, SCOUT enables a Qwen2.5-3B-Instruct model to achieve an average score of 0.86, significantly outperforming proprietary models, including Gemini-2.5-Pro (0.60), while saving about 60% GPU hours consumption.
