Research Papers 论文研究 5h ago Updated 57m ago 更新于 57分钟前 43

Beyond Search-Imitation: Prior-Directed Exploration for Searchless Chess 超越搜索模仿:面向无搜索国际象棋的先导向探索

Replaces standard entropy-based exploration in self-play RL with forward KL divergence toward the network's own MCTS prior, enabling more targeted exploration of promising moves Achieves tactical accuracy improvements (puzzle accuracy: 93.9% → 94.9%, mate-in-four: 77% → 81%) while maintaining searchless playing strength Demonstrates that tactical accuracy and playing strength are dissociable metrics — puzzle-only fine-tuning yields largest tactical gains but costs ~260 Elo Without regularization 提出先验导向探索方法,用前向KL散度替代传统熵奖励,引导无搜索国际象棋网络探索先验判断有前景的走法 通过自博弈强化学习微调,在约2000步内将谜题准确率从93.9%提升至94.9%,四步将死准确率从77%提升至81% 发现战术准确性和比赛强度解耦:单纯谜题微调获得最大战术增益但损失约260 Elo,证明更好谜题解决者不一定是更强玩家 前向KL先验在评级中领先,与反向KL锚点统计相当,但能保留更难解的走法

55
Hot 热度
72
Quality 质量
62
Impact 影响力

Analysis 深度分析

TL;DR

  • Replaces standard entropy-based exploration in self-play RL with forward KL divergence toward the network's own MCTS prior, enabling more targeted exploration of promising moves
  • Achieves tactical accuracy improvements (puzzle accuracy: 93.9% → 94.9%, mate-in-four: 77% → 81%) while maintaining searchless playing strength
  • Demonstrates that tactical accuracy and playing strength are dissociable metrics — puzzle-only fine-tuning yields largest tactical gains but costs ~260 Elo
  • Without regularization, self-play collapses onto a single line of play; the prior-directed approach preserves near-miss solutions that mass-covering priors keep alive
  • Forward-KL prior statistically ties with reverse-KL anchor, though the latter concentrates twice as hard and drops harder solutions from its support

Why It Matters

This work addresses a fundamental limitation in distilling search-based chess engines into searchless networks: imitation of search visit counts is an imperfect proxy for actual playing strength. By introducing prior-directed exploration, the authors show how reinforcement learning can be better aligned with the structural knowledge already encoded in a distilled policy, offering a template for improving single-pass decision-making in other domains where search-imitation has been the default approach.

Technical Details

  • Architecture: Built on Leela Chess Zero's Chessformer, a searchless network that plays from a single forward pass, distilled from AlphaZero-style MCTS visit counts
  • Exploration mechanism: Replaces reverse KL (toward uniform) entropy bonus with forward, mass-covering KL divergence toward the network's own MCTS prior, ensuring exploration concentrates on moves the prior deems promising
  • Entropy-adaptive sampling temperature: Dynamically adjusted based on the value head's outcome uncertainty, sharpening once a position is resolved
  • Training: Approximately 2,000 self-play RL fine-tuning steps with matched-compute sweeps comparing tactical accuracy against playing strength
  • Benchmarks: 100,000-puzzle suite for tactical accuracy; mate-in-four accuracy; Elo rating for playing strength

Industry Insight

  • The dissociation between tactical accuracy and playing strength challenges the common assumption that puzzle-solving performance directly translates to stronger play — practitioners should evaluate both metrics independently when assessing model improvements
  • Prior-directed exploration offers a principled alternative to generic entropy bonuses in RL systems, particularly valuable when distilling search-based policies into efficient single-pass architectures
  • The finding that puzzle-only fine-tuning sacrifices ~260 Elo while yielding the largest tactical gains suggests that domain-specific optimization without strategic grounding can produce misleading performance profiles; balanced regularization is essential for real-world deployment

TL;DR

  • 提出先验导向探索方法,用前向KL散度替代传统熵奖励,引导无搜索国际象棋网络探索先验判断有前景的走法
  • 通过自博弈强化学习微调,在约2000步内将谜题准确率从93.9%提升至94.9%,四步将死准确率从77%提升至81%
  • 发现战术准确性和比赛强度解耦:单纯谜题微调获得最大战术增益但损失约260 Elo,证明更好谜题解决者不一定是更强玩家
  • 前向KL先验在评级中领先,与反向KL锚点统计相当,但能保留更难解的走法

为什么值得看

本文揭示了强化学习探索策略的关键改进方向,对开发高效无搜索AI系统具有重要参考价值。研究挑战了"模仿搜索分布等同于无搜索能力"的假设,为AI训练策略提供了新的思考角度。

技术解析

  • 核心创新:用前向质量覆盖KL散度替代反向KL散度到均匀分布,使探索覆盖先验判断有前景的走法,而非集中在单一高概率路径
  • 熵自适应采样温度:根据价值头的结果不确定性动态设置,在位置确定后自动锐化
  • 实验设置:基于Chessformer架构,在100,000谜题套件和mate-in-four基准上评估,约2000步自博弈训练
  • 关键发现:无正则化时自博弈会坍缩到单一玩法线,前向KL先验能保留近 misses 的获胜走法

行业启示

  • 探索策略设计应匹配最终使用场景:模仿搜索的分布无法直接迁移到无搜索推理,需针对性优化
  • 多维度评估至关重要:战术准确性和比赛强度可能解耦,单一指标优化可能损害综合能力
  • 先验知识的合理利用:结合MCTS先验引导探索可在保持强度的同时提升特定能力,为游戏AI训练提供新思路

Disclaimer: The above content is generated by AI and is for reference only. 免责声明:以上内容由 AI 生成,仅供参考。

Research 科学研究 Fine-tuning 微调 Training 训练 Gaming 游戏