论文精读 | Simple Is Effective

Metadata Title: Simple Is Effective: The Roles of Graphs and Large Language Models in Knowledge-Graph-Based Retrieval-Augmented Generation Venue: ICLR 2025 Source Code: Github TL;DR Motivation: Retriever效率和准确性之间的平衡。 知识的结构信息没有被充分利用 Sections The SubgraphRAG Framework 图的建立 Given a training set of question-answer pairs D, the subgraph retriever learning problem can be formulated as the following problem: ...

April 17, 2025 · Haleuan

AutoGen学习笔记

AutoGen的安装 基于conda 1 2 3 4 5 conda create -n pyautogen python=3.10 conda activate pyautogen # (optional, run on jupyter) conda install ipykernel -y # (optional, formatter plugin) conda install black -y pip install pyautogen 常见概念 OAI_CONFIG_LIST 调用OpenAI的API常用配置文件,用于指定如何连接到OpenAI的服务,比如API密钥、端点URL等信息。 ...

September 4, 2024 · Haleuan