Daily Tech Briefing
AI 科技速览
每天 5 分钟内学习 AI。获取最新的人工智能新闻,理解其重要性,并学习如何将其应用于您的工作。
arXiv Machine Learning · 2026/7/28 04:00:00
Verbalized Particle Posterior: Bayesian Inference over Natural Language Hypotheses
AI 中文解读
打开AI黑盒:新方法让大模型不仅能给出答案,还能告诉你它有多不确定,以及为什么。
过去用大模型时,你得到的往往是一个“正确答案”,但模型自己其实并不清楚这个答案靠不靠谱。最新研究提出“言语化粒子后验”(VPP),相当于给大模型装上了一套“贝叶斯投票系统”。具体做法是:不是让模型只生成一个答案,而是同时生成很多个不同的自然语言假设(好比一群专家各自提出看法),然后用类似“马尔可夫链蒙特卡洛”或“序列蒙特卡洛”的算法,像筛选淘金一样不断更新、保留那些更有道理的假设。最终预测时,让所有剩下的好假设一起投票,加权平均出最终结果。整个过程不需要修改模型内部参数,完全调用现成的大模型就行。
这意味着什么呢?过去用言语化机器学习(VML)时,每训练一次都可能得到截然不同的答案,偶尔还会出现完全离谱的“翻车”结果。VPP彻底解决了这个痛点:它把模型选择变成了一个直观的流程——你看得到哪些假设被数据支持了,哪些被排除了,而且整体准确率稳定提升。未来智能客服、医疗诊断、科学发现等需要高可靠性和可解释性的场景,都可以借助这种技术,让AI不仅“会说话”,还能“讲清楚自己有多自信”。普通用户再也不用担心AI偶尔胡说八道了。
arXiv:2607.22961v1 Announce Type: new
Abstract: Verbalized Machine Learning (VML) parameterizes a model as a natural-language prompt that an LLM evaluates as f(x; theta). The framework is interpretable, but it commits to a single hypothesis with no measure of uncertainty, and that hypothesis varies substantially across optimization runs on the same data. We propose the Verbalized Particle Posterior (VPP), which treats verbalized learning as a Bayesian inference problem: maintain a population of natural-language hypotheses as particles, update them with Metropolis-Hastings (VPP-MH) or Sequential Monte Carlo (VPP-SMC), and predict by Bayesian model averaging. Both algorithms treat the LLM as a black box, requiring no access to logits or gradients. A distinctive consequence follows. In classical Bayesian learning, model selection sits outside the posterior; in VPP both model structure and parameters share a single language space, and the posterior ranges over both. We evaluate VPP on regression, classification, and rule-discovery benchmarks. It improves over a single VML run on every benchmark and matches or exceeds an oracle-best ensemble of independent VML runs on most, while eliminating the catastrophic single-run failures that VML occasionally produces. Because each particle is a human-readable hypothesis, the posterior is itself something a reader can inspect, seeing in plain text which explanations the data supported and which it ruled out.
分享
阅读原文 ↗