Retrieval Augmentation (1)
FLARE
forward-looking active retrieval augmented generation
将最初的 $x$ 作为输入,生成下一个句子,两者结合作为query输入到retriever中进行,然后迭代几次最终生成答案。
Overall Model

FLARE_instruction
将与搜索相关的指令和示例作为技能1放在开头,然后将下游任务的指令和样例作为技能2。给定一个测试用例,我们要求LM在执行任务时结合技能1和2来生成搜索查询。

1 | Skill 1. An instruction to guide LMs to generate search queries. |
Direct FLARE
通过判断LM生成的句子是否confident,如果不是,则需要对query进行处理
- Masked sentences as implicit queries.
- Generated questions as explicit queries. (Self ask model)

Rewrite-Retrieve-Read

通过rewrite使得问题更加清晰,小模型是基于一个假的数据集并利用强化学习训练得到的。
RecMind

Planning
帮助LLM将任务分解为更小、可管理的子目标,以有效地处理复杂任务。planning(x)是一组prompt,将问题$x$分解为一系列子任务,这些子任务由thought $h$、action $a$和observation $o$组成。
Self-Inspiring (SI)
CoT和ToT都只考虑了一种可能性,SI则是基于之前的所有路径另外寻找一个reasoning的可能性。
Memory
Personalized Memory:
individualized user information
World Knowledge:
item metadata information
real-time information that can be accessed through Web search tool
AgentCF
Item和user分别作为agent进行交互,相互更新对方的profile和interest。
All articles on this blog are licensed under CC BY-NC-SA 4.0 unless otherwise stated.



