Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/j-min/Adversarial_Video_Summary

Unofficial PyTorch Implementation of SUM-GAN from "Unsupervised Video Summarization with Adversarial LSTM Networks" (CVPR 2017)
https://github.com/j-min/Adversarial_Video_Summary

gan pytorch summarization vae video

Last synced: about 2 months ago
JSON representation

Unofficial PyTorch Implementation of SUM-GAN from "Unsupervised Video Summarization with Adversarial LSTM Networks" (CVPR 2017)

Awesome Lists containing this project

README

        

# Adversarial_Video_Summary

## PyTorch Implementation of SUM-GAN
- from ["Unsupervised Video Summarization with Adversarial LSTM Networks (CVPR 2017)"](http://web.engr.oregonstate.edu/~sinisa/research/publications/cvpr17_summarization.pdf)
- by Behrooz Mahasseni, Michael Lam and Sinisa Todorovic
- Code Author: [Jaemin Cho](https://github.com/j-min)
- Used as baseline for unsupervised video summarization

## Changes from Original paper
- Video feature extractor
- GoogleNet pool5 (1024) => ResNet-101 pool5 (2048)
- Followed by linear projection to 500-dim
- Stable GAN Training
- Discriminator's learning rate: 1e-5 (Others: 1e-4)
- Fix Discriminators' parameters for first 15 steps at every epoch.

## Model figures
![Model figure 1](imgs/fig1.png)

![Model figure 2](imgs/fig2.png)

![Model figure 3](imgs/fig3.png)

## Algorithm
![Algorithm figure](imgs/fig4.png)