LinkedIn 论文:Agent 记忆无法自动迁移,模型升级需做记忆兼容性测试

Rohan Paul · @rohanpaul_ai · X·2026-09-12 02:12·38分钟前
AI 导读

LinkedIn 论文研究一个模型继承另一个模型创建的记忆时会发生什么。固定 schema 的记忆在两个测试模型间几乎不变(KG-fixed 仅 ±0.0004),自由格式笔记可靠性差,一个方向准确率下降 13.28 点;RAG 中新旧嵌入混用索引只恢复 4.96 / 11.90 点增益。

Rohan Paul@rohanpaul_ai
54AI 编辑部评分,满分 100

LinkedIn 论文:Agent 记忆无法自动迁移,模型升级需做记忆兼容性测试

2026-09-12 02:12· 38分钟前
AI 导读

LinkedIn 论文研究一个模型继承另一个模型创建的记忆时会发生什么。固定 schema 的记忆在两个测试模型间几乎不变(KG-fixed 仅 ±0.0004),自由格式笔记可靠性差,一个方向准确率下降 13.28 点;RAG 中新旧嵌入混用索引只恢复 4.96 / 11.90 点增益。

New Linkedin paper shows Agent memory is not automatically portable:

fixed-schema memory survived the model swap, free-form notes changed sharply, and mixed embeddings hurt retrieval, so treat upgrades as memory migrations.

The paper tests what happens when 1 model inherits memory created by another.

A new model may inherit the same memory store but remember differently, so agent upgrades should include memory compatibility tests rather than only model benchmarks.

Memory saved in a fixed structure barely changed across the 2 tested models because each model used the same fields and format.

Free-form notes were much less reliable. In 1 direction, accuracy dropped 13.28 points because the old model had already left out useful information.

RAG failed differently. Mixing old and new embeddings in the same index recovered only 4.96 of the 11.90-point gain from fully rebuilding the index.

Once compressed notes had lost a fact, rewriting them could not bring it back.

So test memory whenever you change models, rebuild embedding indexes fully, prefer structured memory where it fits, and keep protected raw history when policy allows.

来源:Rohan Paul· x.com