Source-linked AI summary

Deep Reinforcement Learning for Unsupervised Video Summarization with Diversity-Representativeness Reward

Kaiyang Zhou, Yu Qiao, Tao Xiang

arXiv:1801.00054v3cs.CV

TL;DR

Video summarization seeks concise summaries that are diverse and representative, but supervised learning is constrained by the absence of a single ground-truth summary. The paper trains a deep summarization network with end-to-end reinforcement learning and a label-free diversity-representativeness reward, achieving results that outperform unsupervised alternatives and match or exceed most published supervised methods.

  • Problem

    Video summarization requires diverse and representative summaries, while supervised methods face the absence of a single ground-truth summary because human selection is subjective.

  • Method

    The paper formulates summarization as sequential decision-making and trains DSN end-to-end with reinforcement learning using a label-free reward that jointly measures diversity and representativeness.

  • Results

    DR-DSN outperformed other unsupervised methods on SumMe and TVSum, including gains of 5.9% over GANdpp on SumMe and 11.4% on TVSum.

  • Takeaways & Limitations

    The unsupervised method produced results comparable to or superior to most published supervised approaches and selected frames coinciding with human selections.

  • Takeaways & Limitations

    The diversity reward assumes frames farther apart than λ are dissimilar, with λ controlling the degree of temporal distance.

Abstract

from arXiv · show

Video summarization aims to facilitate large-scale video browsing by producing short, concise summaries that are diverse and representative of original videos. In this paper, we formulate video summarization as a sequential decision-making process and develop a deep summarization network (DSN) to summarize videos. DSN predicts for each video frame a probability, which indicates how likely a frame is selected, and then takes actions based on the probability distributions to select frames, forming video summaries. To train our DSN, we propose an end-to-end, reinforcement learning-based framework, where we design a novel reward function that jointly accounts for diversity and representativeness of generated summaries and does not rely on labels or user interactions at all. During training, the reward function judges how diverse and representative the generated summaries are, while DSN strives for earning higher rewards by learning to produce more diverse and more representative summaries. Since labels are not required, our method can be fully unsupervised. Extensive experiments on two benchmark datasets show that our unsupervised method not only outperforms other state-of-the-art unsupervised methods, but also is comparable to or even superior than most of published supervised approaches.

Introduction

Video summarization is framed as sequential decision-making, with DSN trained by label-free reinforcement learning to select diverse and representative frames. The approach addresses limitations of supervised and multistage alternatives and performs strongly on benchmark datasets.

  • Motivation: Supervised video summarization is limited because videos lack a single ground-truth summary, reflecting subjective human selection preferences.
  • Method: DSN uses an encoder-decoder architecture and samples frame-selection actions from probabilities produced by a bidirectional LSTM decoder.The encoder is a CNN for video-frame feature extraction.
  • Method: The end-to-end reinforcement learning framework trains DSN with a label-free reward jointly accounting for summary diversity and representativeness.
  • Method: The diversity reward measures dissimilarity among selected frames, while the representativeness reward uses distances to nearest selected frames, corresponding to a k-medoids formulation.
  • Method: The method can operate fully unsupervised and can be extended with a supervised objective that maximizes the log-probability of selecting annotated keyframes.
  • Results: Experiments on SumMe and TVSum found that the unsupervised method outperformed state-of-the-art unsupervised alternatives and was comparable to or better than most published supervised methods.Qualitative results also showed selected frames coinciding with human selections.

Related Work

Prior work spans diverse video-summarization approaches and reinforcement-learning applications in vision. These lines of research provide context for applying RL to video summarization.

  • Video summarization: Video-summarization research has developed approaches with varied characteristics for identifying important content and selecting keyframes.
  • Reinforcement learning: Reinforcement learning has been applied to vision-related tasks including image captioning and person re-identification.

Proposed Approach

The proposed DSN treats video summarization as sequential decision-making, sampling frame-selection actions from probabilities predicted by an encoder-decoder network. Reinforcement learning optimizes a reward combining diversity and representativeness, with regularization controlling summary length and policy-gradient training improving high-reward actions.

  • Deep Summarization Network: DSN predicts frame-selection probabilities and samples binary actions that determine which video frames form the summary.Its CNN encoder extracts visual features, while a bidirectional recurrent decoder with a fully connected sigmoid layer produces probabilities.
  • Diversity-Representativeness Reward: The reward evaluates generated summaries using both diversity and representativeness.Diversity measures dissimilarity among selected frames, whereas representativeness encourages selected frames to lie near feature-space cluster centers.
  • Diversity-Representativeness Reward: The diversity reward accounts for temporal structure by ignoring similarity between frames separated by more than a distance threshold.The threshold λ controls the degree of temporal distance considered.
  • Policy Optimization: The policy maximizes expected rewards with episodic REINFORCE, approximating gradients across multiple episodes and using a moving-average baseline to reduce variance.Adam updates the parameters, increasing log-probabilities of actions associated with high rewards and decreasing those associated with low rewards.
  • Policy Optimization: Selection-rate and ℓ2 regularization constrain summary length and help avoid overfitting during optimization.The selection-rate term is controlled by ϵ, which determines the percentage of frames selected.
  • Summary Generation: At test time, DSN frame scores are averaged within shots, and dynamic programming selects shots under a usual 15% summary-length limit.This approximates the NP-hard 0/1 Knapsack maximization problem.

Experiments

Experiments on SumMe and TVSum evaluate DR-DSN across standard, augmented, and transfer settings, comparing reward variants and supervised or unsupervised baselines. DR-DSN consistently performs strongly, with joint diversity-representativeness rewards and reinforcement learning yielding competitive or superior results.

  • Reward and supervision ablations: 41.4 vs. 38.2 on SumMe and 57.6 vs. 54.5 on TVSum: DR-DSN significantly outperforms DSNsup in the variant comparison.
  • Reward and supervision ablations: Combining diversity and representativeness rewards outperforms using either reward alone on both datasets.The variants are D-DSN, trained with diversity only; R-DSN, trained with representativeness only; and DR-DSN, trained jointly.
  • Reward and supervision ablations: Adding LMLE supervision improves summarization performance by 1.7% on SumMe and 0.9% on TVSum.The paper attributes this improvement to labels encoding high-level video-content understanding.
  • Unsupervised comparisons: DR-DSN outperforms other unsupervised approaches by 5.9% on SumMe and 11.4% on TVSum against GANdpp.
  • Supervised comparisons: 57.6 vs. 56.3: unsupervised DR-DSN surpasses the state-of-the-art supervised approach on TVSum and outperforms most supervised approaches on SumMe.
  • Augmented and transfer settings: In augmented and transfer settings, DR-DSN is superior or comparable to other methods, while DR-DSNsup performs best in transfer evaluation on both datasets.In augmented evaluation, DR-DSNsup scores 43.9 vs. 43.6 on SumMe against GANsup but 59.8 vs. 61.2 on TVSum.

Conclusion

The paper proposes a label-free reinforcement learning algorithm for unsupervised video summarization. Experiments on two benchmark datasets show it outperforms state-of-the-art unsupervised alternatives and matches or exceeds most supervised methods.

  • The label-free reinforcement learning algorithm outperformed other state-of-the-art unsupervised alternatives on two benchmark datasets.
Loading 1801.00054v3…