🤖 AI Summary
To address the failure of long-range semantic modeling in vision-language models (VLMs) for long-video understanding—caused by improper RoPE frequency allocation—this paper proposes Hybrid Positional Encoding (HoPE). HoPE introduces two key innovations: (1) the first theoretical analysis of frequency mismatch in multimodal RoPE across spatiotemporal dimensions, leading to an interpretable hybrid frequency allocation strategy; and (2) a dynamic temporal scaling mechanism that adaptively adjusts temporal resolution to support arbitrary-length contexts. HoPE requires no architectural modifications and is fully compatible with existing VLM training paradigms. Evaluated on four long-video understanding and retrieval benchmarks, HoPE consistently outperforms state-of-the-art methods, demonstrating strong generalization, robustness, and theoretical soundness under extended context lengths.
📝 Abstract
Vision-Language Models (VLMs) have made significant progress in multimodal tasks. However, their performance often deteriorates in long-context scenarios, particularly long videos. While Rotary Position Embedding (RoPE) has been widely adopted for length generalization in Large Language Models (LLMs), extending vanilla RoPE to capture the intricate spatial-temporal dependencies in videos remains an unsolved challenge. Existing methods typically allocate different frequencies within RoPE to encode 3D positional information. However, these allocation strategies mainly rely on heuristics, lacking in-depth theoretical analysis. In this paper, we first study how different allocation strategies impact the long-context capabilities of VLMs. Our analysis reveals that current multimodal RoPEs fail to reliably capture semantic similarities over extended contexts. To address this issue, we propose HoPE, a Hybrid of Position Embedding designed to improve the long-context capabilities of VLMs. HoPE introduces a hybrid frequency allocation strategy for reliable semantic modeling over arbitrarily long context, and a dynamic temporal scaling mechanism to facilitate robust learning and flexible inference across diverse context lengths. Extensive experiments across four video benchmarks on long video understanding and retrieval tasks demonstrate that HoPE consistently outperforms existing methods, confirming its effectiveness. Code is available at https://github.com/hrlics/HoPE.