├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.rst ├── LICENSE.txt ├── README.rst ├── docs ├── .DS_Store └── _img │ ├── .DS_Store │ ├── rlseq.png │ ├── selfcritic.png │ └── seq2seq.png ├── python_requirements.txt ├── results ├── nointradecoder-notemporal-withpretraining-after-RL.txt ├── nointradecoder-notemporal-withpretraining-before-RL.txt └── scripts.txt └── src ├── .DS_Store ├── __init__.py ├── attention_decoder.py ├── batcher.py ├── beam_search.py ├── data.py ├── decode.py ├── dqn.py ├── file_spliter.py ├── filter_files.txt ├── helper ├── README.rst ├── cnn_dm_data_maker.py ├── cnn_dm_data_merger.py ├── cnn_dm_downloader.py ├── filter_files.txt └── newsroom_data_maker.py ├── inspect_checkpoint.py ├── model.py ├── replay_buffer.py ├── results └── nointradecoder-notemporal-withpretraining.txt ├── rouge.py ├── rouge_tensor.py ├── run_summarization.py └── util.py /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaserkl/RLSeq2Seq/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaserkl/RLSeq2Seq/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaserkl/RLSeq2Seq/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaserkl/RLSeq2Seq/HEAD/README.rst -------------------------------------------------------------------------------- /docs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaserkl/RLSeq2Seq/HEAD/docs/.DS_Store -------------------------------------------------------------------------------- /docs/_img/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaserkl/RLSeq2Seq/HEAD/docs/_img/.DS_Store -------------------------------------------------------------------------------- /docs/_img/rlseq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaserkl/RLSeq2Seq/HEAD/docs/_img/rlseq.png -------------------------------------------------------------------------------- /docs/_img/selfcritic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaserkl/RLSeq2Seq/HEAD/docs/_img/selfcritic.png -------------------------------------------------------------------------------- /docs/_img/seq2seq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaserkl/RLSeq2Seq/HEAD/docs/_img/seq2seq.png -------------------------------------------------------------------------------- /python_requirements.txt: -------------------------------------------------------------------------------- 1 | tensorflow-gpu==1.10 2 | PyYAML 3 | spacy 4 | scikit-learn 5 | nltk 6 | pyrouge 7 | -------------------------------------------------------------------------------- /results/nointradecoder-notemporal-withpretraining-after-RL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaserkl/RLSeq2Seq/HEAD/results/nointradecoder-notemporal-withpretraining-after-RL.txt -------------------------------------------------------------------------------- /results/nointradecoder-notemporal-withpretraining-before-RL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaserkl/RLSeq2Seq/HEAD/results/nointradecoder-notemporal-withpretraining-before-RL.txt -------------------------------------------------------------------------------- /results/scripts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaserkl/RLSeq2Seq/HEAD/results/scripts.txt -------------------------------------------------------------------------------- /src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaserkl/RLSeq2Seq/HEAD/src/.DS_Store -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/attention_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaserkl/RLSeq2Seq/HEAD/src/attention_decoder.py -------------------------------------------------------------------------------- /src/batcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaserkl/RLSeq2Seq/HEAD/src/batcher.py -------------------------------------------------------------------------------- /src/beam_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaserkl/RLSeq2Seq/HEAD/src/beam_search.py -------------------------------------------------------------------------------- /src/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaserkl/RLSeq2Seq/HEAD/src/data.py -------------------------------------------------------------------------------- /src/decode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaserkl/RLSeq2Seq/HEAD/src/decode.py -------------------------------------------------------------------------------- /src/dqn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaserkl/RLSeq2Seq/HEAD/src/dqn.py -------------------------------------------------------------------------------- /src/file_spliter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaserkl/RLSeq2Seq/HEAD/src/file_spliter.py -------------------------------------------------------------------------------- /src/filter_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaserkl/RLSeq2Seq/HEAD/src/filter_files.txt -------------------------------------------------------------------------------- /src/helper/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaserkl/RLSeq2Seq/HEAD/src/helper/README.rst -------------------------------------------------------------------------------- /src/helper/cnn_dm_data_maker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaserkl/RLSeq2Seq/HEAD/src/helper/cnn_dm_data_maker.py -------------------------------------------------------------------------------- /src/helper/cnn_dm_data_merger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaserkl/RLSeq2Seq/HEAD/src/helper/cnn_dm_data_merger.py -------------------------------------------------------------------------------- /src/helper/cnn_dm_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaserkl/RLSeq2Seq/HEAD/src/helper/cnn_dm_downloader.py -------------------------------------------------------------------------------- /src/helper/filter_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaserkl/RLSeq2Seq/HEAD/src/helper/filter_files.txt -------------------------------------------------------------------------------- /src/helper/newsroom_data_maker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaserkl/RLSeq2Seq/HEAD/src/helper/newsroom_data_maker.py -------------------------------------------------------------------------------- /src/inspect_checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaserkl/RLSeq2Seq/HEAD/src/inspect_checkpoint.py -------------------------------------------------------------------------------- /src/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaserkl/RLSeq2Seq/HEAD/src/model.py -------------------------------------------------------------------------------- /src/replay_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaserkl/RLSeq2Seq/HEAD/src/replay_buffer.py -------------------------------------------------------------------------------- /src/results/nointradecoder-notemporal-withpretraining.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaserkl/RLSeq2Seq/HEAD/src/results/nointradecoder-notemporal-withpretraining.txt -------------------------------------------------------------------------------- /src/rouge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaserkl/RLSeq2Seq/HEAD/src/rouge.py -------------------------------------------------------------------------------- /src/rouge_tensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaserkl/RLSeq2Seq/HEAD/src/rouge_tensor.py -------------------------------------------------------------------------------- /src/run_summarization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaserkl/RLSeq2Seq/HEAD/src/run_summarization.py -------------------------------------------------------------------------------- /src/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaserkl/RLSeq2Seq/HEAD/src/util.py --------------------------------------------------------------------------------