├── LICENSE ├── README.md ├── config └── config.py ├── create_data.py ├── create_frame.py ├── create_split.py ├── img └── pipeline.jpg ├── model └── best_model_epoch60.pth.tar ├── networks ├── CNN.py ├── DSN.py └── RL.py ├── output └── v100 │ └── v100.mp4 ├── test └── v100.avi ├── train_video_summarisation.py ├── utils ├── KTS │ ├── __pycache__ │ │ ├── cpd_auto.cpython-36.pyc │ │ └── cpd_nonlin.cpython-36.pyc │ ├── cpd_auto.py │ ├── cpd_nonlin.py │ └── demo.py ├── file_process.py ├── generate_dataset.py ├── knapsack.py ├── rewards.py ├── utils.py └── vsum_tool.py └── video_summary.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorRient/Video-Summarization-Pytorch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorRient/Video-Summarization-Pytorch/HEAD/README.md -------------------------------------------------------------------------------- /config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorRient/Video-Summarization-Pytorch/HEAD/config/config.py -------------------------------------------------------------------------------- /create_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorRient/Video-Summarization-Pytorch/HEAD/create_data.py -------------------------------------------------------------------------------- /create_frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorRient/Video-Summarization-Pytorch/HEAD/create_frame.py -------------------------------------------------------------------------------- /create_split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorRient/Video-Summarization-Pytorch/HEAD/create_split.py -------------------------------------------------------------------------------- /img/pipeline.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorRient/Video-Summarization-Pytorch/HEAD/img/pipeline.jpg -------------------------------------------------------------------------------- /model/best_model_epoch60.pth.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorRient/Video-Summarization-Pytorch/HEAD/model/best_model_epoch60.pth.tar -------------------------------------------------------------------------------- /networks/CNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorRient/Video-Summarization-Pytorch/HEAD/networks/CNN.py -------------------------------------------------------------------------------- /networks/DSN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorRient/Video-Summarization-Pytorch/HEAD/networks/DSN.py -------------------------------------------------------------------------------- /networks/RL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorRient/Video-Summarization-Pytorch/HEAD/networks/RL.py -------------------------------------------------------------------------------- /output/v100/v100.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorRient/Video-Summarization-Pytorch/HEAD/output/v100/v100.mp4 -------------------------------------------------------------------------------- /test/v100.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorRient/Video-Summarization-Pytorch/HEAD/test/v100.avi -------------------------------------------------------------------------------- /train_video_summarisation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorRient/Video-Summarization-Pytorch/HEAD/train_video_summarisation.py -------------------------------------------------------------------------------- /utils/KTS/__pycache__/cpd_auto.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorRient/Video-Summarization-Pytorch/HEAD/utils/KTS/__pycache__/cpd_auto.cpython-36.pyc -------------------------------------------------------------------------------- /utils/KTS/__pycache__/cpd_nonlin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorRient/Video-Summarization-Pytorch/HEAD/utils/KTS/__pycache__/cpd_nonlin.cpython-36.pyc -------------------------------------------------------------------------------- /utils/KTS/cpd_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorRient/Video-Summarization-Pytorch/HEAD/utils/KTS/cpd_auto.py -------------------------------------------------------------------------------- /utils/KTS/cpd_nonlin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorRient/Video-Summarization-Pytorch/HEAD/utils/KTS/cpd_nonlin.py -------------------------------------------------------------------------------- /utils/KTS/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorRient/Video-Summarization-Pytorch/HEAD/utils/KTS/demo.py -------------------------------------------------------------------------------- /utils/file_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorRient/Video-Summarization-Pytorch/HEAD/utils/file_process.py -------------------------------------------------------------------------------- /utils/generate_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorRient/Video-Summarization-Pytorch/HEAD/utils/generate_dataset.py -------------------------------------------------------------------------------- /utils/knapsack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorRient/Video-Summarization-Pytorch/HEAD/utils/knapsack.py -------------------------------------------------------------------------------- /utils/rewards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorRient/Video-Summarization-Pytorch/HEAD/utils/rewards.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorRient/Video-Summarization-Pytorch/HEAD/utils/utils.py -------------------------------------------------------------------------------- /utils/vsum_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorRient/Video-Summarization-Pytorch/HEAD/utils/vsum_tool.py -------------------------------------------------------------------------------- /video_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorRient/Video-Summarization-Pytorch/HEAD/video_summary.py --------------------------------------------------------------------------------