VideoSAGE: Video Summarization with Graph Representation Learning
Jose M. Rojas Chaves, Subarna Tripathi
TL;DR
VideoSAGE addresses efficient video summarization by constructing a sparse graph where each node is a frame and edges connect temporally close frames; the summarization task is cast as binary node classification on this graph. The model uses three parallel GNNs (forward, backward, undirected) with shared second-layer weights to capture short- and long-range temporal dependencies, with initial edges formed by a maximum time distance $T$. Experiments on SumMe and TVSum show that VideoSAGE achieves comparable or better correlation metrics (Kendall’s τ and Spearman’s ρ) than state-of-the-art methods while offering an order-of-magnitude improvement in inference time and memory footprint. The approach demonstrates practical scalability for large video collections and invites further exploration of sparse graph representations for video understanding.
Abstract
We propose a graph-based representation learning framework for video summarization. First, we convert an input video to a graph where nodes correspond to each of the video frames. Then, we impose sparsity on the graph by connecting only those pairs of nodes that are within a specified temporal distance. We then formulate the video summarization task as a binary node classification problem, precisely classifying video frames whether they should belong to the output summary video. A graph constructed this way aims to capture long-range interactions among video frames, and the sparsity ensures the model trains without hitting the memory and compute bottleneck. Experiments on two datasets(SumMe and TVSum) demonstrate the effectiveness of the proposed nimble model compared to existing state-of-the-art summarization approaches while being one order of magnitude more efficient in compute time and memory
