sylvainma / Summarizer

A Video Summarization framework for implementation and benchmark of Deep Learning models
34 stars 2 forks source link

SumGAN upgrade #15

Closed sylvainma closed 4 years ago

sylvainma commented 4 years ago

Command with "tractable" dimensions:

python main.py --model sumgan --epochs 100 --splits-file splits/tvsum_splits.json \
  --sigma 0.3 \
  --sLSTM_hidden_size 128 --sLSTM_num_layers 1 --edLSTM_hidden_size 128 --edLSTM_num_layers 1 --cLSTM_hidden_size 128 --cLSTM_num_layers 1

I used this split file for debugging/overfitting:

[
    {
        "train_keys": [
            "video_1"
        ],
        "test_keys": [
            "video_1"
        ]
    }
]
sylvainma commented 4 years ago

SunGAN Attention introduced:

Expectations:

Test command:

python main.py --model sumgan_att --epochs 1 --sigma 0.3 --pretrain_ae 1 \
  --cLSTM_hidden_size 512 --cLSTM_num_layers 2