2026年7月9日 周四晚上19:30,报名腾讯会议了解“如何构建自进化的动态知识库(Brain)”(限30人)
免费POC, 零成本试错
FDE知识库

FDE知识库

学习大模型的前沿技术与行业落地应用


收藏

百度也来卷RAG了,Self-Reasoning比Self-RAG最高提升11.8%

发布日期:2024-08-04 17:07:58 浏览次数: 2917
作者:深度学习与NLP

微信搜一搜,关注“深度学习与NLP”

检索增强型语言模型(Retrieval-Augmented Language Model, RALM)通过在推理过程中整合外部知识,减轻了LLM固有的事实幻觉问题。然而,RALMs仍面临挑战:检索到的不相关文档可能导致无效的回答生成生成的输出中缺乏适当的引用,使得验证模型的可信度变得复杂。
一个示例,展示了百度自我推理(Self-Reasoning)框架如何通过相关意识过程、证据意识选择过程和轨迹分析过程生成推理轨迹。

为了解决上述问题,百度(Baidu Inc.)提出了一种新颖的自我推理框架(SELF-REASONING framework),旨在通过LLM自身生成的推理轨迹来提高RALMs的可靠性和可追溯性。它的创新之处在于通过端到端的框架直接增强LLMs的性能,而无需依赖外部的推理模型,从而提供了一种更有效和可扩展的解决方案。
对提高RALMs的自我推理框架的说明图。上层是基本的LLMs,它们通过固有知识回答问题。中层是标准的检索增强型语言模型,它们使用检索到的文档帮助回答问题。底层是百度的自我推理框架,它使用自生成的推理轨迹来输出答案。

  1. 相关性感知过程(Relevance-Aware Process, RAP)

  • 选择默认的检索器(如DPR和Contriever)来检索与问题相关的文档。

  • 指导模型评估检索到的文档与问题的相关性,并生成解释为何这些文档被识别为相关的输出。

  • 如果所有检索到的文档都不相关,模型应依据预训练阶段获得的内部知识提供答案。

  • 证据感知选择过程(Evidence-Aware Selective Process, EAP)

    • 要求模型从检索到的文档中明确选择关键句子作为证据,并输出选择这些句子的原因。

    • 模型需要自动选择文档中的关键句子片段,并解释为何这些片段能够回答问题。

  • 轨迹分析过程(Trajectory Analysis Process, TAP)

    • 将前两个过程中生成的自我推理轨迹整合,形成推理片段链,以增强检索增强生成的整体性能。

    • 要求模型分析这些推理轨迹,并最终输出简洁的分析和简短的答案。

    此外,还包括数据生成和质量控制的过程

    • 训练数据生成:使用GPT-4生成答案作为基准真值,并创建正负样本对。

    • 数据质量控制:通过自动验证工具和过滤不正确答案的轨迹,确保数据生成的正确性和完整性。

    模型训练

    • 使用标准的语言建模目标进行训练,通过最大化似然函数来训练自我推理生成模型。

    • 提出了分阶段掩码策略的逐步训练方法,以逐步学习生成长推理轨迹。

    通过在四个公共数据集(两个短形式问答数据集、一个长形式问答数据集和一个事实验证数据集)上的评估,证明了该方法的优越性,能够超越现有的最先进模型,并且在仅使用2,000个训练样本的情况下,就能与GPT-4的性能相媲美

    在两个短形式问答数据集、一个长形式问答数据集和一个事实验证数据集上,与不同基线模型的性能比较。用粗体黑色表示的数字代表除了GPT-4之外的最佳结果。结果是基于五次运行的平均值,并且省略了标准差值(所有值均≤2%)。

    SELF-REASONING框架通过利用LLM自身生成的推理轨迹,在不依赖外部模型或工具的情况下,有效提高了RALMs的鲁棒性,并通过要求LLM明确生成文档片段和引用,增强了RALMs的可解释性和可追溯性。
    在三个不同的数据集上的噪声鲁棒性实验结果:(a) 左侧是NQ数据集,(b) 中间是PopQA数据集,(c) 右侧是FEVER数据集。Self-RAG和Vicuna是具有13B参数大小的模型。

    附录:

    GPT-4生成短形式和长形式问答任务的自我推理轨迹的Prompt模版

    Instructions# RoleYou are an experienced expert, skilled in answering various questions.# TaskPlease answer the question according to the provided reference evidence asrequired.# Reference Evidence[1] Retrieved Document {{DOCUMENT 1}[2] Retrieved Document {{DOCUMENT 2}[3] Retrieved Document {{DOCUMENT 3}[4] Retrieved Document {{DOCUMENT 4}[5] Retrieved Document {{DOCUMENT 5}# Requirements1. First, please judge whether the provided documents are relevant with thequestion, and put it in the relevant field. If the provided content is irrelevant tothe question, explain the reason in the relevant reason field, then you can givethe answer with your internal knowledge.2. If possible, answer the question in points and provide explanations.3. If the content in the answer comes from different pieces of evidence, youneed to cite the sequence number of the evidence at the end of the sentence.The citation format is shown below: [1], [1,3].4. Place each cited piece of evidence in the cite_list field, cite content field tostore each paragraph of cited content (omitted words can be replaced by ...),cite reason is used to store your thoughts and analysis of this content, howthis paragraph can answer the question.5. Put the long answer content in the analysis field, and put the shortanswer(no more than 10 words) in the answer field.# Question{{QUESTION}}

    GPT-4生成事实验证任务的自我推理轨迹的Prompt模版

    Instructions# RoleYou are an experienced expert, skilled in answering various questions.# TaskPlease answer the question according to the provided reference evidence asrequired.# Reference Evidence[1] Retrieved Document {{DOCUMENT 1}}[2] Retrieved Document {{DOCUMENT 2}}[3] Retrieved Document {{DOCUMENT 3}}[4] Retrieved Document {{DOCUMENT 4}}[5] Retrieved Document {{DOCUMENT 5}}# Requirements1. First, please judge whether the provided documents are relevant with theclaim, and put it in the relevant field. If the provided content is irrelevant to thequestion, explain the reason in the relevant reason field, then you can give theanswer with your internal knowledge.2. If possible, answer the question in points and provide explanations.3. If the content in the answer comes from different pieces of evidence, youneed to cite the sequence number of the evidence at the end of the sentence.The citation format is shown below: [1], [1,3].4. Place put each cited piece of evidence in the list, use cite content field tostore each paragraph of cited content (omitted words can be replaced by ...),cite reason is used to store your thoughts and analysis of this content, how thisparagraph can answer the question.5. Put the long answer content in the analysis field, and put the short answer(SUPPORT/REFUTE/NOT ENOUGH INFO) in the answer field.# QuestionYou should check whether the given claim is supported or refuted by above theevidence. If supported,output SUPPORT, if controversial, output REFUTE; ifthe evidence provided is not enough to make a decision or the providedevidence is irrelevant, output NOT ENOUGH INFO.{{CLAIM}}

    案例研究。展示了SELF-REASONING框架在推理过程中生成的自我推理轨迹,并展示了它们如何逻辑上生成正确答案。

    QuestionWhen was catch me if you can made?
    Retrieved document #1: The film due to her busy schedule. The original start date wasJanuary 2002, but was pushed to February 7 in Los Angeles, California. Locations includedBurbank, Downey, New York City, Quebec City and Montreal. …
    Retrieved document #2: eventually turned to him for help in catching other check forgers.Development for the film started in 1980, but did not progress until 1997, when Spielberg'sDreamWorks bought the film rights to Abagnale's book. David Fincher, Gore Verbinski, LasseHallström, Miloš Forman, and Cameron Crowe had all been possible candidates for directorbefore Spielberg decided to direct. …
    Retrieved document #3: It was funded independently and had a budget of $800,000. The filmwas Sommers's directorial debut and was written by him. When production finished, the studiothat had promised to distribute the movie had gone out of business, and it was eventuallyreleased by MCA Inc. in July 1989. The movie…(Other retrieved documents are omitted.)
    Raw LLM Answer: 2000 ❌
    Standard RAG Answer: 1989 ❌
    Self-Reasoning Answer:(Relevant Aware Process)Relevant: TrueRelevant Reason: The provided documents are relevant with question.(Evidence Aware Selective Process)
    Cite content: [1] … the original start date was January 2002, but was pushed to February 7 inLos Angeles, …Reason to cite: This piece provides information on the commencement and location of filmingfor 'Catch Me If You Can', indicating that it started in April 2002
    Cite content: [3] … When production finished, the studio that had promised to distribute themovie had gone out of business, and it was eventually released by MCA Inc. in July 1989., …Reason to cite: This piece provides information on the release date of 'Catch Me If You Can',indicating that it was eventually released by MCA Inc. in July.(Trajectory Analysis Process)
    Analysis:(long answer)The film 'Catch Me If You Can' was made in 2002. It started filming in April 2002 in Park Avenue,just outside the Waldorf-Astoria Hotel, and moved to Orange, New Jersey, before returning toBrooklyn for bank and courthouse scenes [1].
    Final Answer:2002 ✅ (short answer)
    https://arxiv.org/pdf/2407.19813Improving Retrieval Augmented Language Model with Self-ReasoningBaidu Inc., China.

53AI,企业落地大模型首选服务商

产品:场景落地咨询+大模型应用平台+行业解决方案

承诺:免费POC验证,效果达标后再合作。零风险落地应用大模型,已交付160+中大型企业

联系我们

售前咨询
186 6662 7370
预约演示
185 8882 0121

微信扫码

添加专属顾问

回到顶部

加载中...

扫码咨询

扫码登录
登录即表示您同意《53AI网站服务协议》
服务协议

欢迎您使用【53AI 官方网站】(以下简称“本网站”或“我们”)。本《会员服务协议》(以下简称“本协议”)是您(以下简称“会员”或“用户”)与【深圳市博思协创网络科技有限公司】之间关于注册、登录及使用本网站会员服务所订立的法律协议。

在您注册或登录前,请务必审慎阅读、充分理解各条款内容,特别是免除或限制责任的条款、知识产权条款、争议解决条款等。此类条款将以加粗形式提示您注意。 当您通过微信公众号授权、手机验证码验证或其他方式成功登录本网站时,即视为您已完全理解并同意接受本协议的全部内容。

一、 定义

本网站:指由【深圳市博思协创网络科技有限公司】运营的,域名为【53ai.com】的网站及相关移动端页面。

会员服务:指本网站向注册会员提供的知识库文章查阅、内容检索及其他相关增值服务。

知识库内容:指本网站发布的包括但不限于文字、图表、数据、研究报告、行业分析等数字化内容资源。

二、 账号注册与登录

登录方式:本网站支持以下登录方式,您可根据实际情况选择:

微信公众号授权登录:您同意将您的微信OpenID信息授权给本网站,用于创建或关联会员账号。

手机验证码登录:您需提供真实有效的手机号码,并通过短信验证码完成身份验证与登录/注册。

账号安全:您的账号仅限您本人使用,禁止赠与、借用、租用、转让或售卖。因您保管不善导致的账号被盗、密码泄露等损失,由您自行承担。

实名认证:根据相关法律法规要求,我们可能要求您在特定功能下完成实名认证。如您拒绝提供,可能无法使用部分或全部服务。

未成年人保护:若您未满18周岁,请在法定监护人的陪同下阅读本协议,并在征得监护人同意后使用本服务。

三、 服务内容与规范

知识库查阅权限:会员登录后,有权按照其会员等级对应的权限范围,在线浏览、检索本网站知识库中的相关文章及内容。

服务变更:我们有权根据业务发展需要,调整、变更或终止部分服务内容,并将以网站公告、公众号消息等方式提前通知。

禁止行为:您在使用服务时不得实施以下行为:

利用技术手段批量爬取、下载、转存知识库内容;

将知识库内容用于商业目的或未经授权地向第三方传播;

干扰本网站正常运行或侵犯其他用户合法权益;

发布违法违规信息或从事违反公序良俗的活动。

四、 知识产权声明

权利归属:本网站知识库中的排版设计、软件代码等内容的知识产权均归【公司全称】或原权利人所有,受《中华人民共和国著作权法》等法律保护。

有限许可:本网站授予会员一项非独占、不可转让、不可转授权的普通许可,仅限于个人学习、研究之目的在线查阅知识库内容。

侵权追责:未经书面许可,任何单位或个人不得以任何形式复制、转载、摘编、镜像、汇编或以其他方式使用上述内容。一经发现,我们保留追究其法律责任的权利。

五、 个人信息保护

我们重视对您个人信息的保护。关于我们如何收集、使用、存储和保护您的个人信息,请单独阅读 《隐私政策》。

您通过微信公众号授权或手机号验证所提供的信息,我们将严格按照《个人信息保护法》的规定处理,仅用于身份识别、服务提供及安全验证等必要用途。

您可以随时通过网站设置或联系客服行使查阅、更正、删除个人信息及撤回授权同意的权利。

六、 免责声明

内容准确性:知识库内容仅供参考,不构成专业建议。我们不对其完整性、准确性、时效性作任何明示或暗示的保证,您应自行判断并承担使用风险。

不可抗力:因自然灾害、政策法规变化、网络故障、第三方平台接口异常(如微信接口维护、运营商短信通道故障)等不可抗力导致的服务中断或延迟,我们不承担违约责任。

第三方链接:本网站可能包含指向第三方网站的链接,该等网站的内容和服务不受我们控制,请您自行甄别风险。

七、 违约责任

如您违反本协议约定,我们有权视情节采取警告、限制功能、暂停服务、注销账号等措施,并保留要求赔偿损失的权利。

如因您的违约行为导致我们遭受行政处罚、第三方索赔或商誉损失,您应承担全部赔偿责任(包括但不限于罚款、赔偿金、律师费、公证费等)。

八、 法律适用与争议解决

本协议的订立、执行和解释均适用中华人民共和国大陆地区法律。

因本协议产生的或与本协议有关的任何争议,双方应友好协商解决;协商不成的,任何一方均可向【公司所在地】有管辖权的人民法院提起诉讼。

九、 其他

本协议构成双方就本服务达成的完整协议,取代此前任何口头或书面约定。

本协议任一条款被认定为无效或不可执行的,不影响其他条款的效力。

我们对本协议享有最终解释权,并在法律允许的范围内保留随时修改的权利。修改后的协议一经公布即生效,继续使用服务即视为同意修订内容。


已查阅