├── .gitignore ├── README.md ├── compute_rouge.py ├── convert_rcdata.py ├── query_offset_files.py └── vocabulary.py /.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Python 2 | *.pyc 3 | 4 | # PyCharm project 5 | .idea 6 | 7 | rouge 8 | output 9 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helmertz/querysum-data/HEAD/README.md -------------------------------------------------------------------------------- /compute_rouge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helmertz/querysum-data/HEAD/compute_rouge.py -------------------------------------------------------------------------------- /convert_rcdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helmertz/querysum-data/HEAD/convert_rcdata.py -------------------------------------------------------------------------------- /query_offset_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helmertz/querysum-data/HEAD/query_offset_files.py -------------------------------------------------------------------------------- /vocabulary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helmertz/querysum-data/HEAD/vocabulary.py --------------------------------------------------------------------------------