├── .gitignore ├── README.md ├── create_small_set.py ├── data_loader.py ├── evaluate.py ├── generate.py ├── logger.py ├── loss.py ├── model_pytorch.py ├── opt.py ├── parallel.py ├── parameters_names.json ├── scripts ├── encode_cnndm.py ├── encode_newsroom.py └── encode_xsum.py ├── text_utils.py └── train.py /.gitignore: -------------------------------------------------------------------------------- 1 | model 2 | *__pycache__ 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrew03/transformer-abstractive-summarization/HEAD/README.md -------------------------------------------------------------------------------- /create_small_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrew03/transformer-abstractive-summarization/HEAD/create_small_set.py -------------------------------------------------------------------------------- /data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrew03/transformer-abstractive-summarization/HEAD/data_loader.py -------------------------------------------------------------------------------- /evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrew03/transformer-abstractive-summarization/HEAD/evaluate.py -------------------------------------------------------------------------------- /generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrew03/transformer-abstractive-summarization/HEAD/generate.py -------------------------------------------------------------------------------- /logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrew03/transformer-abstractive-summarization/HEAD/logger.py -------------------------------------------------------------------------------- /loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrew03/transformer-abstractive-summarization/HEAD/loss.py -------------------------------------------------------------------------------- /model_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrew03/transformer-abstractive-summarization/HEAD/model_pytorch.py -------------------------------------------------------------------------------- /opt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrew03/transformer-abstractive-summarization/HEAD/opt.py -------------------------------------------------------------------------------- /parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrew03/transformer-abstractive-summarization/HEAD/parallel.py -------------------------------------------------------------------------------- /parameters_names.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrew03/transformer-abstractive-summarization/HEAD/parameters_names.json -------------------------------------------------------------------------------- /scripts/encode_cnndm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrew03/transformer-abstractive-summarization/HEAD/scripts/encode_cnndm.py -------------------------------------------------------------------------------- /scripts/encode_newsroom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrew03/transformer-abstractive-summarization/HEAD/scripts/encode_newsroom.py -------------------------------------------------------------------------------- /scripts/encode_xsum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrew03/transformer-abstractive-summarization/HEAD/scripts/encode_xsum.py -------------------------------------------------------------------------------- /text_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrew03/transformer-abstractive-summarization/HEAD/text_utils.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrew03/transformer-abstractive-summarization/HEAD/train.py --------------------------------------------------------------------------------