├── .gitignore ├── AUTHORS.md ├── LICENSE ├── README.md ├── data ├── interim │ └── .gitkeep ├── processed │ └── .gitkeep └── raw │ ├── example.json │ ├── human_evaluation │ └── human_evaluation.csv │ ├── summe │ └── .gitkeep │ └── tvsum │ └── .gitkeep ├── environment.yml ├── notebooks ├── .gitkeep ├── Human evaluation.ipynb ├── Importance score correlations visualization.ipynb ├── Read evaluation results.ipynb └── rank order statistics.ipynb └── src ├── summe_eval.py ├── summe_eval_human_summary.py ├── summe_eval_random_summary.py ├── tools ├── .gitkeep ├── __init__.py ├── io.py ├── knapsack_solver.py ├── segmentation.py ├── summarizer.py └── video_io.py ├── tvsum_eval_human_summary.py └── tvsum_eval_random_summary.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayu-ot/rethinking-evs/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayu-ot/rethinking-evs/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayu-ot/rethinking-evs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayu-ot/rethinking-evs/HEAD/README.md -------------------------------------------------------------------------------- /data/interim/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/processed/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/raw/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayu-ot/rethinking-evs/HEAD/data/raw/example.json -------------------------------------------------------------------------------- /data/raw/human_evaluation/human_evaluation.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayu-ot/rethinking-evs/HEAD/data/raw/human_evaluation/human_evaluation.csv -------------------------------------------------------------------------------- /data/raw/summe/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/raw/tvsum/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayu-ot/rethinking-evs/HEAD/environment.yml -------------------------------------------------------------------------------- /notebooks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notebooks/Human evaluation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayu-ot/rethinking-evs/HEAD/notebooks/Human evaluation.ipynb -------------------------------------------------------------------------------- /notebooks/Importance score correlations visualization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayu-ot/rethinking-evs/HEAD/notebooks/Importance score correlations visualization.ipynb -------------------------------------------------------------------------------- /notebooks/Read evaluation results.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayu-ot/rethinking-evs/HEAD/notebooks/Read evaluation results.ipynb -------------------------------------------------------------------------------- /notebooks/rank order statistics.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayu-ot/rethinking-evs/HEAD/notebooks/rank order statistics.ipynb -------------------------------------------------------------------------------- /src/summe_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayu-ot/rethinking-evs/HEAD/src/summe_eval.py -------------------------------------------------------------------------------- /src/summe_eval_human_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayu-ot/rethinking-evs/HEAD/src/summe_eval_human_summary.py -------------------------------------------------------------------------------- /src/summe_eval_random_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayu-ot/rethinking-evs/HEAD/src/summe_eval_random_summary.py -------------------------------------------------------------------------------- /src/tools/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tools/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayu-ot/rethinking-evs/HEAD/src/tools/io.py -------------------------------------------------------------------------------- /src/tools/knapsack_solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayu-ot/rethinking-evs/HEAD/src/tools/knapsack_solver.py -------------------------------------------------------------------------------- /src/tools/segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayu-ot/rethinking-evs/HEAD/src/tools/segmentation.py -------------------------------------------------------------------------------- /src/tools/summarizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayu-ot/rethinking-evs/HEAD/src/tools/summarizer.py -------------------------------------------------------------------------------- /src/tools/video_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayu-ot/rethinking-evs/HEAD/src/tools/video_io.py -------------------------------------------------------------------------------- /src/tvsum_eval_human_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayu-ot/rethinking-evs/HEAD/src/tvsum_eval_human_summary.py -------------------------------------------------------------------------------- /src/tvsum_eval_random_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayu-ot/rethinking-evs/HEAD/src/tvsum_eval_random_summary.py --------------------------------------------------------------------------------