MEMORY.md (C-engineering) is not real AI MEMORY - Different Math!

· Source: Discover AI · Field: Technology & Digital — Artificial Intelligence & Machine Learning · Depth: Expert, extended

Summary

A recent analysis, prompted by research from the Chinese University of Hong Kong on April 30th, 2026, distinguishes between "contextual agentic memory" and "true memory" in AI systems. It argues that current agentic memory, often implemented via markdown files for skills or instructions, functions merely as a lookup table or memo, not as internalized knowledge. This approach leads to a generalization gap, a "frozen novice" problem where agents don't truly improve over sessions, and potential security issues from persistent prompt injections. The core distinction lies between changing context (in-context learning with frozen model weights) and changing tensor weights (parametric learning through fine-tuning or reinforcement learning). While proprietary models necessitate context-based methods, open models allow for genuine skill accumulation via weight updates, which is crucial for compositional generalization and handling novel combinations of concepts.

Key takeaway

For AI Architects and Research Scientists designing evolving AI agents, recognize that relying solely on in-context learning with external markdown files creates a "frozen novice" problem. To enable true skill acquisition and compositional generalization, you must implement weight-based learning through fine-tuning or continual learning, especially for narrow, rapidly evolving domains. A smaller, continually updated model can outperform a larger, static one in such specialized contexts, offering a path to genuine intelligence growth beyond mere pattern recognition.

Key insights

Current agentic memory systems are memos, not true learning, limiting generalization and skill acquisition.

Principles

Method

To achieve genuine skill accumulation, integrate an explicit "consolidation journal" from memory stores (e.g., markdown files) to periodically fine-tune LLM tensor weights using methods like LoRA, knowledge editing, or self-distillation.

In practice

Topics

Best for: AI Architect, Research Scientist, CTO, AI Scientist, Machine Learning Engineer, AI Engineer

Related on AIssential

Open in AIssential →

Editorial summary, takeaway, and curation by AIssential. Original article published by Discover AI.