Research Papers 论文研究 3h ago Updated 48m ago 更新于 48分钟前 49

MemArena: An Ego-Centric Benchmark for On-Device Agentic Personal Memory Assistants at Scale MemArena:面向设备端代理式个人记忆助手的以自我为中心的基准测试

MemArena introduces the first ego-centric, single-world conversational benchmark for on-device personal memory assistants, addressing gaps in activity-dense interaction, ego-centric perspective, and coherent multi-session worlds Built with the MASim agent simulator, it generates 10.3M dialog-text tokens across 50 agents over 15 days, with co-generated ground truth spanning six recall, reasoning, and trustworthiness dimensions Memory-backend architecture choice has a larger impact on content accu MemArena是首个面向设备端个人记忆助手的自我中心基准测试,通过MASim模拟器生成50个代理15天的密集对话数据(10.3M token) 记忆后端选择对内容准确性的影响超过模型规模扩展:Qwen3-0.6B上Memobase→MemSearch提升+32.5/+19.2 pp,超过读者扩展的+10.6/+6.8 pp 权限感知访问机制普遍失效:Oracle检索泄露严重,其他后端过于保守无法有效披露信息 搜索延迟在边缘设备上影响有限:Spark GB10节点上各后端增加87/7/48 ms,对TTFT贡献较小

65
Hot 热度
75
Quality 质量
70
Impact 影响力

Analysis 深度分析

TL;DR

  • MemArena introduces the first ego-centric, single-world conversational benchmark for on-device personal memory assistants, addressing gaps in activity-dense interaction, ego-centric perspective, and coherent multi-session worlds
  • Built with the MASim agent simulator, it generates 10.3M dialog-text tokens across 50 agents over 15 days, with co-generated ground truth spanning six recall, reasoning, and trustworthiness dimensions
  • Memory-backend architecture choice has a larger impact on content accuracy than reader model scaling: switching from Memobase to MemSearch on Qwen3-0.6B yields +32.5/+19.2 percentage points versus only +10.6/+6.8 pp from scaling the reader
  • Permission-aware access fails universally across all evaluated backends—Oracle retrieval leaks heavily while other backends are overly restrictive in disclosure
  • Search latency on edge hardware (Spark GB10) is moderate and fixed (7–87 ms depending on backend), constituting only a small fraction of total time-to-first-token for most reader-backend combinations

Why It Matters

This benchmark directly addresses a critical gap in on-device AI: evaluating personal memory assistants that must handle private conversations with open-weight models in realistic, ego-centric settings. For practitioners building edge-deployed agents, the findings reveal that backend architecture decisions outweigh model scaling choices—a counterintuitive result with significant cost-performance implications. The universal failure of permission-aware access also highlights an unresolved privacy-utility tradeoff that the industry must solve before deploying personal memory assistants at scale.

Technical Details

  • Benchmark construction: MemArena uses the MASim (Memory Agent Simulator) to generate a coherent single-world conversational dataset with 50 virtual agents interacting over 15 days, producing 10.3M dialog-text tokens and 24.1K ego-observed tokens per agent per day
  • Evaluation dimensions: Six ground-truth dimensions covering recall, reasoning, and trustworthiness are co-generated alongside interaction histories, enabling multi-faceted assessment beyond simple retrieval accuracy
  • Evaluated backends: Five configurations tested—Vanilla context (no memory), BM25-RAG, Oracle retrieval (upper-bound), Memobase, and MemSearch—paired with open-weight reader models including Qwen3-0.6B
  • Edge performance profiling: Latency measured on Spark GB10 edge hardware, reporting fixed per-search overhead of 87 ms (BM25-RAG), 7 ms (Memobase), and 48 ms (MemSearch)
  • Open release: Code, MASim simulator, and MemArena-L benchmark will be released upon acceptance

Industry Insight

  • Backend over scaling: For resource-constrained edge deployments, investing in memory retrieval architecture (e.g., MemSearch over Memobase) delivers substantially better accuracy gains than scaling up the reader model—prioritize the memory layer when optimizing on-device personal assistants
  • Privacy-utility deadlock: The universal failure of permission-aware access—either leaking too much (Oracle) or disclosing too little (other backends)—signals that current approaches cannot simultaneously satisfy privacy guarantees and utility requirements; new access-control mechanisms are needed before production deployment
  • Edge latency is manageable: Memory search overhead is modest and predictable on edge hardware, meaning latency should not be the primary bottleneck; engineering efforts should focus on retrieval quality and privacy compliance rather than search speed optimization

TL;DR

  • MemArena是首个面向设备端个人记忆助手的自我中心基准测试,通过MASim模拟器生成50个代理15天的密集对话数据(10.3M token)
  • 记忆后端选择对内容准确性的影响超过模型规模扩展:Qwen3-0.6B上Memobase→MemSearch提升+32.5/+19.2 pp,超过读者扩展的+10.6/+6.8 pp
  • 权限感知访问机制普遍失效:Oracle检索泄露严重,其他后端过于保守无法有效披露信息
  • 搜索延迟在边缘设备上影响有限:Spark GB10节点上各后端增加87/7/48 ms,对TTFT贡献较小

为什么值得看

本文填补了设备端个人记忆助手在密集交互、自我中心视角和多会话连贯性方面的基准测试空白,为边缘AI记忆系统提供了首个系统化评估框架。研究结果直接指导从业者如何在模型规模与记忆架构之间做出资源分配决策。

技术解析

  • MemArena基于MASim代理模拟器构建单世界对话基准,覆盖50个代理15天交互,生成10.3M对话文本token(每代理每天24.1K文本-only自我观察token),并在回忆、推理、可信度六个维度共同生成ground truth
  • 评估五种记忆后端(Vanilla context、BM25-RAG、Oracle retrieval、Memobase、MemSearch)与五个开放权重读者的组合,揭示后端选择对内容准确性的决定性作用
  • 权限感知访问实验显示系统性失败:Oracle过度泄露,其他后端过度保守,表明当前隐私-可用性平衡机制存在根本缺陷
  • 边缘延迟测量表明搜索开销固定且较小(BM25-RAG 87ms/Memobase 7ms/MemSearch 48ms),仅在极小读者上显著,多数组合中搜索延迟仅占TTFT小部分

行业启示

  • 设备端记忆助手开发应优先投资记忆后端架构优化而非盲目扩大模型规模,小模型配合高效检索可超越大模型+低效后端的性能表现
  • 隐私保护与功能可用性之间存在严重失衡,需重新设计权限感知机制,避免"全泄露"或"全保守"的两极化问题
  • 边缘部署场景下搜索延迟不是主要瓶颈,资源分配应聚焦于记忆质量、权限控制和推理效率的协同优化

Disclaimer: The above content is generated by AI and is for reference only. 免责声明:以上内容由 AI 生成,仅供参考。

Benchmark 基准测试 Agent Agent Evaluation 评测 Dataset 数据集 Research 科学研究