├── .gitignore ├── LICENSE ├── README.md ├── create_split.py ├── imgs ├── epoch_reward_0.png ├── epoch_reward_13.png ├── epoch_reward_15.png ├── overall_reward.png └── pipeline.jpg ├── knapsack.py ├── main.py ├── models.py ├── parse_json.py ├── parse_json.sh ├── parse_log.py ├── rewards.py ├── summary2video.py ├── utils.py ├── visualize_results.py └── vsum_tools.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaiyangZhou/pytorch-vsumm-reinforce/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaiyangZhou/pytorch-vsumm-reinforce/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaiyangZhou/pytorch-vsumm-reinforce/HEAD/README.md -------------------------------------------------------------------------------- /create_split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaiyangZhou/pytorch-vsumm-reinforce/HEAD/create_split.py -------------------------------------------------------------------------------- /imgs/epoch_reward_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaiyangZhou/pytorch-vsumm-reinforce/HEAD/imgs/epoch_reward_0.png -------------------------------------------------------------------------------- /imgs/epoch_reward_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaiyangZhou/pytorch-vsumm-reinforce/HEAD/imgs/epoch_reward_13.png -------------------------------------------------------------------------------- /imgs/epoch_reward_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaiyangZhou/pytorch-vsumm-reinforce/HEAD/imgs/epoch_reward_15.png -------------------------------------------------------------------------------- /imgs/overall_reward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaiyangZhou/pytorch-vsumm-reinforce/HEAD/imgs/overall_reward.png -------------------------------------------------------------------------------- /imgs/pipeline.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaiyangZhou/pytorch-vsumm-reinforce/HEAD/imgs/pipeline.jpg -------------------------------------------------------------------------------- /knapsack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaiyangZhou/pytorch-vsumm-reinforce/HEAD/knapsack.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaiyangZhou/pytorch-vsumm-reinforce/HEAD/main.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaiyangZhou/pytorch-vsumm-reinforce/HEAD/models.py -------------------------------------------------------------------------------- /parse_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaiyangZhou/pytorch-vsumm-reinforce/HEAD/parse_json.py -------------------------------------------------------------------------------- /parse_json.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaiyangZhou/pytorch-vsumm-reinforce/HEAD/parse_json.sh -------------------------------------------------------------------------------- /parse_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaiyangZhou/pytorch-vsumm-reinforce/HEAD/parse_log.py -------------------------------------------------------------------------------- /rewards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaiyangZhou/pytorch-vsumm-reinforce/HEAD/rewards.py -------------------------------------------------------------------------------- /summary2video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaiyangZhou/pytorch-vsumm-reinforce/HEAD/summary2video.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaiyangZhou/pytorch-vsumm-reinforce/HEAD/utils.py -------------------------------------------------------------------------------- /visualize_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaiyangZhou/pytorch-vsumm-reinforce/HEAD/visualize_results.py -------------------------------------------------------------------------------- /vsum_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaiyangZhou/pytorch-vsumm-reinforce/HEAD/vsum_tools.py --------------------------------------------------------------------------------