StreamMeCo: Long-Term Agent Memory Compression for Efficient Streaming Video Understanding

arXiv cs.CV / 4/13/2026

📰 NewsSignals & Early TrendsIdeas & Deep AnalysisModels & Research

Key Points

  • StreamMeCo is a proposed framework for compressing long-term memory in vision streaming agents to reduce storage and computation overhead without large accuracy loss.
  • It uses minmax sampling for isolated memory-graph nodes (edge-free) and edge-aware weight pruning for connected nodes to evict redundant memory while preserving performance.
  • To counteract potential degradation from compression, StreamMeCo adds a time-decay memory retrieval mechanism that de-emphasizes stale information.
  • Experiments on M3-Bench-robot, M3-Bench-web, and Video-MME-Long show that with up to 70% memory-graph compression, the method achieves a 1.87× speedup in memory retrieval and an average 1.0% accuracy improvement.
  • The authors provide an implementation at the linked GitHub repository, enabling replication and further development of agent-memory-efficient streaming video understanding.

Abstract

Vision agent memory has shown remarkable effectiveness in streaming video understanding. However, storing such memory for videos incurs substantial memory overhead, leading to high costs in both storage and computation. To address this issue, we propose StreamMeCo, an efficient Stream Agent Memory Compression framework. Specifically, based on the connectivity of the memory graph, StreamMeCo introduces edge-free minmax sampling for the isolated nodes and an edge-aware weight pruning for connected nodes, evicting the redundant memory nodes while maintaining the accuracy. In addition, we introduce a time-decay memory retrieval mechanism to further eliminate the performance degradation caused by memory compression. Extensive experiments on three challenging benchmark datasets (M3-Bench-robot, M3-Bench-web and Video-MME-Long) demonstrate that under 70% memory graph compression, StreamMeCo achieves a 1.87* speedup in memory retrieval while delivering an average accuracy improvement of 1.0%. Our code is available at https://github.com/Celina-love-sweet/StreamMeCo.