JA EN
体系エージェント
·★ 会員·論文·11分で読めます

論文解説: Metis — 記憶を外付けせず、モデルの中に住まわせる「Memory Foundation Model」

AIエージェントの記憶は今もRAGなどの「外付け」が主流。この論文は記憶をモデル本体の順伝播に内蔵する Memory Foundation Model を提唱し、初のプロトタイプ Metis を提案する。覚える・忘れる・更新するを勾配なしのforward計算だけで実行する仕組みと、その実力・限界を1から解説。

対象textタスクagents

Metis: Memory Foundation Model

一次資料 — この記事の根拠

論文の発表 2026-07-29この解説の公開 2026-08-13同月

Metis: Memory Foundation ModelZeyu Zhang, Ziliang Guo, Yihang Sun ほか · 2026-07-29 · v2arXiv:2607.26760論文ページ·PDF
原文の要旨(Abstract)を読む

Recent advances in AI agents have increasingly internalized native capabilities into their underlying foundation models, giving rise to multimodal foundation models and large reasoning models. However, agent memory is still primarily implemented through external modules, leaving the native memory capability largely unexplored. In this paper, we take a first step toward this direction by introducing memory foundation models, which empower foundation models with native memory capabilities. We formalize native memory from two perspectives: a persistent and dynamically evolving memory state within the backbone, and native memory procedures that autonomously store and utilize information through model computation. We show that native memory offers advantages in architecture, end-to-end optimization, and efficiency. Based on this formulation, we propose Metis, the first prototype of memory foundation models. Metis introduces a new architecture that equips a foundation model with a native memory state, allowing historical information to be compressed into the model and accessed through memory attention. We construct large-scale memory-specific training data and introduce multiple optimization objectives to acquire these native memory procedures through mid-training. The online memory maintenance of Metis is gradient-free, and the memory update requires only a forward pass. At inference time, all learned model weights remain frozen, while the native memory states are autonomously transformed through standard forward computation. Through extensive experiments, we show that Metis exhibits native memory capabilities and further provide a detailed analysis of its strengths, limitations, and behaviors. To facilitate future research on memory foundation models, we release our project and model checkpoints.


AIの記憶は、いまだに「外付けメモ帳」

抜群に頭の切れる同僚がいるのに、会議が終わるたびに記憶が消えてしまう——今のLLMはそういう存在です。そこで現場では、過去のやり取りをテキストとして保存しておき、次の会話の冒頭に「前回までのあらすじ」として貼り付ける方法(RAG: 検索拡張生成)が使われてきました。いわば付箋だらけのメモ帳を毎回読み返してから話し始めるやり方です。

人間の記憶はそうなっていません。経験は脳の配線そのものに染み込み、思い出す作業と考える作業は分かれていません。この論文「Metis: Memory Foundation Model」(MemTensor・中国人民大学・シンガポール国立大学ほか、2026年7月公開)は、この「染み込む記憶」をLLMに実装しようという試みです。論文はこれを memory foundation model(記憶基盤モデル) と名付け、初のプロトタイプ Metis を提案しています。

外付け記憶の3つの限界

論文はまず、既存の外部メモリ方式の限界を3つ挙げます(§1)。

  1. 目標がバラバラ: 外部メモリの仕事は「役立ちそうな文脈を作ること」、モデル本体の仕事は「与えられた文脈で続きを書くこと」。両者は別々に設計されるので、メモリ側が本当に推論へ役立つ情報を渡せる保証がなく、モデル側もそれを最適に使えるとは限らない。
  2. end-to-endで鍛えられない: 「検索する・切り貼りする」といった離散的な操作には勾配が流れないため、記憶の使い方をタスクの成績から逆算して学習させるのが難しい。
  3. 遅い: 検索・並べ替え・結合という追加処理が毎回走るので、応答までの時間が延びる。

これに対して論文が提案するネイティブ記憶は、次の2つの要素で定義されます(§2)。

面白いのは記憶の定義の厳しさです。論文では、対話が始まるから知っている情報は「知識」であって記憶ではなく、対話中にオンラインで得た情報だけを記憶と呼びます(§2.2)。さらに論文は、記憶とは本質的に「いま受け取った情報が将来どう使われるかを予測する問題」だと位置づけます(§1)。予測問題なら、他の能力と同じように訓練で獲得できるはず——これがこの研究の根っこにある発想です。

記憶の照合の土台になるのは、Transformerでもおなじみのベクトルの内積です。まずはその感覚を思い出しておきましょう。

FIG 12本のベクトルの向きが揃うほど内積は大きくなる。Metisは「いまの質問」と「記憶に刻んだキー」の内積の大きさで、どの記憶を読み出すかを決める

Metisの解剖: 2種類のブロックが記憶を担う

Metisは、Transformerの各層に Metisブロック を追加します。中身は2つです(§3.2)。

つまり「何をどう覚えるかのルール」は訓練で焼き込み、「実際に覚えた中身」だけが実行時に動く、という分担です。

あるステップの対話が終わると、Metisは次の流れで記憶を書き込みます(§3.3)。

この先にあるもの

§

ここから先は会員限定です

解説記事371本・教科書26章・学生モード48単元・論文精読6本が、月額¥490ですべて読み放題になります。新しい解説は毎日3本ずつ増えます。いつでも解約でき、解約後も期間の終わりまで読めます。

会員の方はログインすると続きが表示されます

参考文献

  1. Zeyu Zhang, Ziliang Guo, Yihang Sun, Xichong Zhang et al.. (2026-07-29) Metis: Memory Foundation Model. arXiv:2607.26760論文ページ·PDF

本記事は上記論文の本文にもとづいて執筆しています。数値・主張は原典を優先してください。

コメント

コメントにはログインが必要です