Search papers, labs, and topics across Lattice.
The paper introduces ST-SimDiff, a training-free framework for efficient video understanding with MLLMs that balances spatiotemporal similarity and difference to reduce visual tokens. It constructs a spatio-temporal graph of visual tokens and employs a dual-selection strategy, using community detection for similarity-based selection and temporal difference to identify key dynamic shifts. Experiments demonstrate that ST-SimDiff significantly outperforms state-of-the-art methods while substantially reducing computational costs by preserving both static and dynamic content with fewer tokens.
Instead of just pruning redundant tokens, ST-SimDiff dramatically cuts MLLM video processing costs by intelligently preserving tokens representing *changes* in the video.
Multimodal Large Language Models (MLLMs) face significant computational overhead when processing long videos due to the massive number of visual tokens required. To improve efficiency, existing methods primarily reduce redundancy by pruning or merging tokens based on importance or similarity. However, these approaches largely overlook a critical dimension of video content, i.e., changes and turning points, and they lack a collaborative model for spatio-temporal relationships. To address this, we propose a new perspective: similarity is for identifying redundancy, while difference is for capturing key events. Based on this, we designed a training-free framework named ST-SimDiff. We first construct a spatio-temporal graph from the visual tokens to uniformly model their complex associations. Subsequently, we employ a parallel dual-selection strategy: 1) similarity-based selection uses community detection to retain representative tokens, compressing static information; 2) temporal difference-based selection precisely locates content-changing points to preserve tokens that capture key dynamic shifts. This allows it to preserve both static and dynamic content with a minimal number of tokens. Extensive experiments show our method significantly outperforms state-of-the-art approaches while substantially reducing computational costs. Our code is available in https://github.com/bingjunluo/ST-SimDiff.