🤖 AI Summary
Existing video summarization methods struggle to capture long-range semantic dependencies and lack flexibility in adapting to multimodal user preferences; moreover, temporal proximity between frames often misaligns with semantic similarity. To address these issues, we propose a Language-Guided Graph Representation Network (LG-GRN), which constructs forward, backward, and undirected temporal graphs to jointly model local temporal dynamics and global context. A dual-threshold graph convolution mechanism is introduced to explicitly distinguish strong from weak semantic associations. Cross-modal embeddings, guided by natural language queries, enable text-driven, customizable summary generation. Summarization is formulated as a mixture of Bernoulli distributions, optimized via the Expectation-Maximization (EM) algorithm. Extensive experiments demonstrate that LG-GRN significantly outperforms state-of-the-art methods across multiple benchmarks, achieving an 87.8% inference speedup and a 91.7% reduction in parameter count—delivering superior efficiency, personalization, and semantic consistency.
📝 Abstract
With the rapid growth of video content on social media, video summarization has become a crucial task in multimedia processing. However, existing methods face challenges in capturing global dependencies in video content and accommodating multimodal user customization. Moreover, temporal proximity between video frames does not always correspond to semantic proximity. To tackle these challenges, we propose a novel Language-guided Graph Representation Learning Network (LGRLN) for video summarization. Specifically, we introduce a video graph generator that converts video frames into a structured graph to preserve temporal order and contextual dependencies. By constructing forward, backward and undirected graphs, the video graph generator effectively preserves the sequentiality and contextual relationships of video content. We designed an intra-graph relational reasoning module with a dual-threshold graph convolution mechanism, which distinguishes semantically relevant frames from irrelevant ones between nodes. Additionally, our proposed language-guided cross-modal embedding module generates video summaries with specific textual descriptions. We model the summary generation output as a mixture of Bernoulli distribution and solve it with the EM algorithm. Experimental results show that our method outperforms existing approaches across multiple benchmarks. Moreover, we proposed LGRLN reduces inference time and model parameters by 87.8% and 91.7%, respectively. Our codes and pre-trained models are available at https://github.com/liwrui/LGRLN.