├── .DS_Store ├── .gitignore ├── LICENSE ├── README.md ├── Transformer ├── .DS_Store ├── Graph.py ├── Model.py ├── Module.py ├── Reward.py └── SearchStrategy.py ├── all_system_output ├── .DS_Store ├── SOW-REAP.txt ├── ablation │ ├── .DS_Store │ ├── eps │ │ ├── eps_0.1.txt │ │ ├── eps_0.2.txt │ │ ├── eps_0.3.txt │ │ ├── eps_0.4.txt │ │ ├── eps_0.6.txt │ │ ├── eps_0.7.txt │ │ ├── eps_0.8.txt │ │ ├── eps_0.9.txt │ │ └── eps_0.txt │ ├── ours_2100_wo_graph.txt │ ├── ours_4311_wo_graph.txt │ ├── ours_4311_wo_graph_sent_pos.txt │ ├── ours_wo_div_coef.txt │ ├── result_0.5_2100_GAT.txt │ └── result_0.5_2100_wograph_addsp.txt ├── ours_0.5_2100_topk.txt ├── ours_2100_80.txt ├── ours_4311_100.txt ├── pointer_generator.txt ├── residual_lstm.txt ├── seq2seq+attn.txt ├── tran_doc.txt ├── tran_doc_topk.txt ├── tran_sent.txt └── tran_sent_topk.txt ├── avg_param.py ├── combine.py ├── createVocab.py ├── eval ├── .DS_Store ├── bleu.py ├── coherence.py └── ppl.py ├── generator.py ├── img ├── .DS_Store ├── coh.jpg ├── model.jpg └── result.jpg ├── preprocess.py ├── script.sh ├── train.py └── utils ├── .DS_Store ├── args.py ├── checkpoint.py ├── config.py ├── constants.py ├── eval.py ├── lang.py ├── makeModel.py ├── penalty.py ├── run.py ├── tools.py └── trainer.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/README.md -------------------------------------------------------------------------------- /Transformer/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/Transformer/.DS_Store -------------------------------------------------------------------------------- /Transformer/Graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/Transformer/Graph.py -------------------------------------------------------------------------------- /Transformer/Model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/Transformer/Model.py -------------------------------------------------------------------------------- /Transformer/Module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/Transformer/Module.py -------------------------------------------------------------------------------- /Transformer/Reward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/Transformer/Reward.py -------------------------------------------------------------------------------- /Transformer/SearchStrategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/Transformer/SearchStrategy.py -------------------------------------------------------------------------------- /all_system_output/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/all_system_output/.DS_Store -------------------------------------------------------------------------------- /all_system_output/SOW-REAP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/all_system_output/SOW-REAP.txt -------------------------------------------------------------------------------- /all_system_output/ablation/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/all_system_output/ablation/.DS_Store -------------------------------------------------------------------------------- /all_system_output/ablation/eps/eps_0.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/all_system_output/ablation/eps/eps_0.1.txt -------------------------------------------------------------------------------- /all_system_output/ablation/eps/eps_0.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/all_system_output/ablation/eps/eps_0.2.txt -------------------------------------------------------------------------------- /all_system_output/ablation/eps/eps_0.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/all_system_output/ablation/eps/eps_0.3.txt -------------------------------------------------------------------------------- /all_system_output/ablation/eps/eps_0.4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/all_system_output/ablation/eps/eps_0.4.txt -------------------------------------------------------------------------------- /all_system_output/ablation/eps/eps_0.6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/all_system_output/ablation/eps/eps_0.6.txt -------------------------------------------------------------------------------- /all_system_output/ablation/eps/eps_0.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/all_system_output/ablation/eps/eps_0.7.txt -------------------------------------------------------------------------------- /all_system_output/ablation/eps/eps_0.8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/all_system_output/ablation/eps/eps_0.8.txt -------------------------------------------------------------------------------- /all_system_output/ablation/eps/eps_0.9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/all_system_output/ablation/eps/eps_0.9.txt -------------------------------------------------------------------------------- /all_system_output/ablation/eps/eps_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/all_system_output/ablation/eps/eps_0.txt -------------------------------------------------------------------------------- /all_system_output/ablation/ours_2100_wo_graph.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/all_system_output/ablation/ours_2100_wo_graph.txt -------------------------------------------------------------------------------- /all_system_output/ablation/ours_4311_wo_graph.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/all_system_output/ablation/ours_4311_wo_graph.txt -------------------------------------------------------------------------------- /all_system_output/ablation/ours_4311_wo_graph_sent_pos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/all_system_output/ablation/ours_4311_wo_graph_sent_pos.txt -------------------------------------------------------------------------------- /all_system_output/ablation/ours_wo_div_coef.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/all_system_output/ablation/ours_wo_div_coef.txt -------------------------------------------------------------------------------- /all_system_output/ablation/result_0.5_2100_GAT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/all_system_output/ablation/result_0.5_2100_GAT.txt -------------------------------------------------------------------------------- /all_system_output/ablation/result_0.5_2100_wograph_addsp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/all_system_output/ablation/result_0.5_2100_wograph_addsp.txt -------------------------------------------------------------------------------- /all_system_output/ours_0.5_2100_topk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/all_system_output/ours_0.5_2100_topk.txt -------------------------------------------------------------------------------- /all_system_output/ours_2100_80.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/all_system_output/ours_2100_80.txt -------------------------------------------------------------------------------- /all_system_output/ours_4311_100.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/all_system_output/ours_4311_100.txt -------------------------------------------------------------------------------- /all_system_output/pointer_generator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/all_system_output/pointer_generator.txt -------------------------------------------------------------------------------- /all_system_output/residual_lstm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/all_system_output/residual_lstm.txt -------------------------------------------------------------------------------- /all_system_output/seq2seq+attn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/all_system_output/seq2seq+attn.txt -------------------------------------------------------------------------------- /all_system_output/tran_doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/all_system_output/tran_doc.txt -------------------------------------------------------------------------------- /all_system_output/tran_doc_topk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/all_system_output/tran_doc_topk.txt -------------------------------------------------------------------------------- /all_system_output/tran_sent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/all_system_output/tran_sent.txt -------------------------------------------------------------------------------- /all_system_output/tran_sent_topk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/all_system_output/tran_sent_topk.txt -------------------------------------------------------------------------------- /avg_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/avg_param.py -------------------------------------------------------------------------------- /combine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/combine.py -------------------------------------------------------------------------------- /createVocab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/createVocab.py -------------------------------------------------------------------------------- /eval/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/eval/.DS_Store -------------------------------------------------------------------------------- /eval/bleu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/eval/bleu.py -------------------------------------------------------------------------------- /eval/coherence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/eval/coherence.py -------------------------------------------------------------------------------- /eval/ppl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/eval/ppl.py -------------------------------------------------------------------------------- /generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/generator.py -------------------------------------------------------------------------------- /img/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/img/.DS_Store -------------------------------------------------------------------------------- /img/coh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/img/coh.jpg -------------------------------------------------------------------------------- /img/model.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/img/model.jpg -------------------------------------------------------------------------------- /img/result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/img/result.jpg -------------------------------------------------------------------------------- /preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/preprocess.py -------------------------------------------------------------------------------- /script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/script.sh -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/train.py -------------------------------------------------------------------------------- /utils/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/utils/.DS_Store -------------------------------------------------------------------------------- /utils/args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/utils/args.py -------------------------------------------------------------------------------- /utils/checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/utils/checkpoint.py -------------------------------------------------------------------------------- /utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/utils/config.py -------------------------------------------------------------------------------- /utils/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/utils/constants.py -------------------------------------------------------------------------------- /utils/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/utils/eval.py -------------------------------------------------------------------------------- /utils/lang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/utils/lang.py -------------------------------------------------------------------------------- /utils/makeModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/utils/makeModel.py -------------------------------------------------------------------------------- /utils/penalty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/utils/penalty.py -------------------------------------------------------------------------------- /utils/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/utils/run.py -------------------------------------------------------------------------------- /utils/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/utils/tools.py -------------------------------------------------------------------------------- /utils/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L-Zhe/CoRPG/HEAD/utils/trainer.py --------------------------------------------------------------------------------