├── LICENSE ├── LICENSE.md ├── README.md ├── V1 ├── __init__.py ├── data_preprocess.py ├── main_gen.py ├── model.py ├── modules.py ├── train_test_eval.py └── utils.py ├── V2 ├── __init__.py ├── data_preprocess.py ├── main_gen.py ├── model.py ├── modules.py ├── train_test_eval.py └── utils.py └── _config.yml /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIKevin/Pointer_Generator_Summarizer/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | 2 | Copyright (C) 2019 Kevin Sylla 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIKevin/Pointer_Generator_Summarizer/HEAD/README.md -------------------------------------------------------------------------------- /V1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /V1/data_preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIKevin/Pointer_Generator_Summarizer/HEAD/V1/data_preprocess.py -------------------------------------------------------------------------------- /V1/main_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIKevin/Pointer_Generator_Summarizer/HEAD/V1/main_gen.py -------------------------------------------------------------------------------- /V1/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIKevin/Pointer_Generator_Summarizer/HEAD/V1/model.py -------------------------------------------------------------------------------- /V1/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIKevin/Pointer_Generator_Summarizer/HEAD/V1/modules.py -------------------------------------------------------------------------------- /V1/train_test_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIKevin/Pointer_Generator_Summarizer/HEAD/V1/train_test_eval.py -------------------------------------------------------------------------------- /V1/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIKevin/Pointer_Generator_Summarizer/HEAD/V1/utils.py -------------------------------------------------------------------------------- /V2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /V2/data_preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIKevin/Pointer_Generator_Summarizer/HEAD/V2/data_preprocess.py -------------------------------------------------------------------------------- /V2/main_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIKevin/Pointer_Generator_Summarizer/HEAD/V2/main_gen.py -------------------------------------------------------------------------------- /V2/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIKevin/Pointer_Generator_Summarizer/HEAD/V2/model.py -------------------------------------------------------------------------------- /V2/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIKevin/Pointer_Generator_Summarizer/HEAD/V2/modules.py -------------------------------------------------------------------------------- /V2/train_test_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIKevin/Pointer_Generator_Summarizer/HEAD/V2/train_test_eval.py -------------------------------------------------------------------------------- /V2/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIKevin/Pointer_Generator_Summarizer/HEAD/V2/utils.py -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIKevin/Pointer_Generator_Summarizer/HEAD/_config.yml --------------------------------------------------------------------------------