├── LICENSE.md ├── README.md ├── __init__.py ├── _config.yml ├── batcher.py ├── layers.py ├── main.py ├── model.py ├── test_helper.py ├── train_test_eval.py ├── training_helper.py └── utils.py /LICENSE.md: -------------------------------------------------------------------------------- 1 | 2 | Copyright (C) 2018 David Stephane Belemkoabga 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steph1793/Pointer_Generator_Summarizer/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steph1793/Pointer_Generator_Summarizer/HEAD/_config.yml -------------------------------------------------------------------------------- /batcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steph1793/Pointer_Generator_Summarizer/HEAD/batcher.py -------------------------------------------------------------------------------- /layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steph1793/Pointer_Generator_Summarizer/HEAD/layers.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steph1793/Pointer_Generator_Summarizer/HEAD/main.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steph1793/Pointer_Generator_Summarizer/HEAD/model.py -------------------------------------------------------------------------------- /test_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steph1793/Pointer_Generator_Summarizer/HEAD/test_helper.py -------------------------------------------------------------------------------- /train_test_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steph1793/Pointer_Generator_Summarizer/HEAD/train_test_eval.py -------------------------------------------------------------------------------- /training_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steph1793/Pointer_Generator_Summarizer/HEAD/training_helper.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steph1793/Pointer_Generator_Summarizer/HEAD/utils.py --------------------------------------------------------------------------------