memanto-longmem-results
收藏资源简介:
Memanto LongMemEval Benchmark Results 数据集包含了 Memanto 在 LongMemEval 长期交互记忆基准测试中的完整评估结果,覆盖了渐进式消融研究的五个阶段。该数据集旨在评估代理 AI 在长期记忆任务中的表现,包括信息提取、多会话推理、时间推理、知识更新和弃权等核心能力。数据集包含 500 个手动策划的问题,分为六个类别:单会话用户、单会话助手、单会话偏好、知识更新、时间推理和多会话。每个数据条目包含问题 ID、问题类型、问题文本、预测答案、真实答案、正确性评分(0 或 1)、评分理由和检索上下文大小等字段。数据集分为五个消融阶段,分别对应 Memanto 架构的不同配置,展示了从基线到最终优化版本的性能提升。最终阶段(Stage 5)在 LongMemEval 基准上达到了 89.8% 的准确率,是纯向量架构中的最高性能。该数据集适用于研究长期记忆、检索增强生成、多会话对话系统和时间推理等任务。
The Memanto LongMemEval Benchmark Results dataset contains the complete evaluation results of Memanto on the LongMemEval long-term interactive memory benchmark, covering five stages of progressive ablation studies. This dataset is designed to evaluate the performance of AI Agents on long-term memory tasks, including core capabilities such as information extraction, multi-session reasoning, temporal reasoning, knowledge updating, and abstention. The dataset includes 500 manually curated questions, categorized into six groups: single-session user, single-session assistant, single-session preference, knowledge updating, temporal reasoning, and multi-session. Each data entry contains fields such as question ID, question type, question text, predicted answer, ground truth answer, correctness score (0 or 1), scoring rationale, and retrieved context size. The dataset is divided into five ablation stages, each corresponding to different configurations of the Memanto architecture, demonstrating the performance improvement from the baseline to the final optimized version. The final stage (Stage 5) achieves an accuracy of 89.8% on the LongMemEval benchmark, representing the state-of-the-art performance among pure vector architectures. This dataset is suitable for research on tasks such as long-term memory, retrieval-augmented generation, multi-session conversational systems, and temporal reasoning.
数据集概述
Memanto LongMemEval Benchmark Results 数据集包含了 Memanto 在 LongMemEval 长程交互记忆基准测试上的完整逐问题评估结果,涵盖了一项五阶段逐步消融研究的所有阶段。该数据集与论文《Memanto: Typed Semantic Memory with Information-Theoretic Retrieval for Long-Horizon Agents》一同发布。
数据集基本信息
- 语言: 英语
- 许可证: MIT
- 任务类别: 问答(开放域问答、抽取式问答)
- 标签: 基准测试、长程记忆、检索增强生成、对话、多会话、时序推理、知识更新、向量搜索等
- 数据规模: n < 1K(少于1000条)
- 来源数据集: 原始数据
- 注释创建者: 机器生成
- 语言创建者: 机器生成
- 多语言性: 单语(英语)
关于 Memanto
Memanto 是一个面向智能体 AI 的通用记忆层,在 LongMemEval 上使用纯向量架构实现了89.8%的最新准确率。其关键架构特征包括:
- 13类别类型化语义记忆模式(事实、偏好、决策、承诺、目标、事件、指令、关系、上下文、学习、观察、错误、人工制品)
- 自动化冲突解决,用于矛盾检测和版本管理
- 每个问题仅使用单一检索查询,无并行或递归策略
- 零摄入成本,无索引延迟,写入时无需 LLM 提取
关于 LongMemEval
LongMemEval 是一个大规模基准测试,包含500个精心设计的问题,分布在六个类别中,旨在评估五项核心记忆能力:
| 类别 | 描述 |
|---|---|
| 单会话用户 | 用户在单个会话中陈述的信息 |
| 单会话助手 | 会话中助手回复中的信息 |
| 单会话偏好 | 单个会话中表达的用户偏好 |
| 知识更新 | 早期信息后被更正或更新的问题 |
| 时序推理 | 需要时序排序和推理的问题 |
| 多会话 | 需要跨多个会话综合信息的问题 |
标准评估设置大约包含115K token,横跨约50个会话。
数据集结构
数据集包含五个子集(split),分别对应消融研究的五个阶段。每一行代表一个被评估的问题,包含以下字段:
| 列名 | 类型 | 描述 |
|---|---|---|
sample_id |
字符串 | 唯一问题标识符 |
question_type |
字符串 | LongMemEval 类别 |
question |
字符串 | 评估问题 |
prediction |
字符串 | Memanto 生成的答案 |
ground_truth |
字符串 | 基准测试的标准答案 |
score |
整数 | 二元正确性评分(1=正确,0=错误) |
reasoning |
字符串 | LLM 评分者的推理过程 |
context_size |
整数 | 该问题检索上下文中的 token 数量 |
消融研究阶段
| 子集 | 阶段 | 配置 | LongMemEval 准确率 |
|---|---|---|---|
ablation_1 |
阶段1 — 朴素基线 | k=10, threshold=0.15, Claude Sonnet 4 | 56.6% |
ablation_2 |
阶段2 — 召回扩展 | k=40, threshold=0.10, Claude Sonnet 4 | 77.0% |
ablation_3 |
阶段3 — 提示优化 | k=40, threshold=0.10, 优化提示 | 79.2% |
ablation_4 |
阶段4 — 最大召回 | k=100, threshold=0.05, 动态预算 | 85.0% |
ablation_5 |
阶段5 — 推理模型升级 | k=100, threshold=0.05, Gemini 3 | 89.8% |
关键发现: 阶段2(召回扩展,k=10→40)带来了最大的单次提升(+20.4个百分点),证实检索召回率(而非架构复杂性)是主要的性能驱动因素。
最终按类别结果(阶段5)
| 类别 | 准确率 |
|---|---|
| 单会话用户 | 95.7% |
| 单会话助手 | 100.0% |
| 单会话偏好 | 93.3% |
| 知识更新 | 93.6% |
| 时序推理 | 88.0% |
| 多会话 | 81.2% |
| 整体 | 89.8% |
与其他系统对比
| 系统 | LongMemEval | 架构 | 查询策略 |
|---|---|---|---|
| Memanto(本工作) | 89.8% | 纯向量 | 单一查询 |
| Hindsight | 91.4% | 混合(反思+向量) | 并行多查询 |
| EmergenceMem | 86.0% | 混合(图+向量) | 并行多查询 |
| Supermemory | 85.2% | 混合(图+向量) | 并行多查询 |
| Memobase | 75.8% | 混合(图+向量) | 并行单一查询 |
| Zep | 71.2% | 混合(图+向量) | 并行单一查询 |
| Full Context | 60.2% | 完整上下文 | 不适用 |
| Mem0 | 66.9% | 纯向量 | 并行单一查询 |
| LangMem | 58.1% | 纯向量RAG | 单一查询 |
Memanto 在所有纯向量系统中取得了最高准确率,超过 Mem0 +22.9个百分点。
评估设置
- 基准测试: LongMemEval 完整 500 问题套件(标准 S 设置,约 115K token,约 50 会话)
- LLM 评分器: Claude Sonnet 4(所有阶段)
- 推理模型: Claude Sonnet 4(阶段1-4),Gemini 3(阶段5)
- Memanto 版本: 2.1.4
- 检索后端: Moorcheh ITS 引擎(单一查询,无多查询或递归策略)
可复现性
所有评估结果均可完全复现,复现代码和相关资源可在 moorcheh-ai/memanto-evaluation 代码仓库中找到,具体位于 memanto-evaluation/longmem 目录下,包含基准测试数据集、问题套件、各消融阶段结果文件和完整评估流水线 Python 脚本。




