├── README.md ├── context_receptive_generative ├── example.sh ├── nmt_train.py ├── onmt │ ├── Beam.py │ ├── Constants.py │ ├── Dataset.py │ ├── Dict.py │ ├── Models.py │ ├── Optim.py │ ├── Translator.py │ ├── __init__.py │ └── modules │ │ ├── GlobalAttention.py │ │ └── __init__.py ├── preprocess.py └── translate.py ├── domains.txt ├── example.sh ├── sentence_piece.py └── sumbasicUpdate.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrimai/Towards-Content-Transfer-through-Grounded-Text-Generation/HEAD/README.md -------------------------------------------------------------------------------- /context_receptive_generative/example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrimai/Towards-Content-Transfer-through-Grounded-Text-Generation/HEAD/context_receptive_generative/example.sh -------------------------------------------------------------------------------- /context_receptive_generative/nmt_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrimai/Towards-Content-Transfer-through-Grounded-Text-Generation/HEAD/context_receptive_generative/nmt_train.py -------------------------------------------------------------------------------- /context_receptive_generative/onmt/Beam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrimai/Towards-Content-Transfer-through-Grounded-Text-Generation/HEAD/context_receptive_generative/onmt/Beam.py -------------------------------------------------------------------------------- /context_receptive_generative/onmt/Constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrimai/Towards-Content-Transfer-through-Grounded-Text-Generation/HEAD/context_receptive_generative/onmt/Constants.py -------------------------------------------------------------------------------- /context_receptive_generative/onmt/Dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrimai/Towards-Content-Transfer-through-Grounded-Text-Generation/HEAD/context_receptive_generative/onmt/Dataset.py -------------------------------------------------------------------------------- /context_receptive_generative/onmt/Dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrimai/Towards-Content-Transfer-through-Grounded-Text-Generation/HEAD/context_receptive_generative/onmt/Dict.py -------------------------------------------------------------------------------- /context_receptive_generative/onmt/Models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrimai/Towards-Content-Transfer-through-Grounded-Text-Generation/HEAD/context_receptive_generative/onmt/Models.py -------------------------------------------------------------------------------- /context_receptive_generative/onmt/Optim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrimai/Towards-Content-Transfer-through-Grounded-Text-Generation/HEAD/context_receptive_generative/onmt/Optim.py -------------------------------------------------------------------------------- /context_receptive_generative/onmt/Translator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrimai/Towards-Content-Transfer-through-Grounded-Text-Generation/HEAD/context_receptive_generative/onmt/Translator.py -------------------------------------------------------------------------------- /context_receptive_generative/onmt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrimai/Towards-Content-Transfer-through-Grounded-Text-Generation/HEAD/context_receptive_generative/onmt/__init__.py -------------------------------------------------------------------------------- /context_receptive_generative/onmt/modules/GlobalAttention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrimai/Towards-Content-Transfer-through-Grounded-Text-Generation/HEAD/context_receptive_generative/onmt/modules/GlobalAttention.py -------------------------------------------------------------------------------- /context_receptive_generative/onmt/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrimai/Towards-Content-Transfer-through-Grounded-Text-Generation/HEAD/context_receptive_generative/onmt/modules/__init__.py -------------------------------------------------------------------------------- /context_receptive_generative/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrimai/Towards-Content-Transfer-through-Grounded-Text-Generation/HEAD/context_receptive_generative/preprocess.py -------------------------------------------------------------------------------- /context_receptive_generative/translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrimai/Towards-Content-Transfer-through-Grounded-Text-Generation/HEAD/context_receptive_generative/translate.py -------------------------------------------------------------------------------- /domains.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrimai/Towards-Content-Transfer-through-Grounded-Text-Generation/HEAD/domains.txt -------------------------------------------------------------------------------- /example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrimai/Towards-Content-Transfer-through-Grounded-Text-Generation/HEAD/example.sh -------------------------------------------------------------------------------- /sentence_piece.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrimai/Towards-Content-Transfer-through-Grounded-Text-Generation/HEAD/sentence_piece.py -------------------------------------------------------------------------------- /sumbasicUpdate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrimai/Towards-Content-Transfer-through-Grounded-Text-Generation/HEAD/sumbasicUpdate.py --------------------------------------------------------------------------------