├── Data ├── build_dictionary.py ├── examples.ch ├── examples.en ├── examples.tree ├── multi-bleu.perl └── tokenizer.perl ├── LICENSE ├── README.md ├── data_iterator.py ├── nmt.py ├── script ├── ReadMe.md ├── input_example.txt ├── turn.bat └── turn.jar ├── shuffle.py ├── test_gpu.sh ├── train.sh ├── train_nmt_zh2en.py ├── translate.py ├── translate_gpu.py └── treedata_iterator.py /Data/build_dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howardchenhd/Syntax-awared-NMT/HEAD/Data/build_dictionary.py -------------------------------------------------------------------------------- /Data/examples.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howardchenhd/Syntax-awared-NMT/HEAD/Data/examples.ch -------------------------------------------------------------------------------- /Data/examples.en: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howardchenhd/Syntax-awared-NMT/HEAD/Data/examples.en -------------------------------------------------------------------------------- /Data/examples.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howardchenhd/Syntax-awared-NMT/HEAD/Data/examples.tree -------------------------------------------------------------------------------- /Data/multi-bleu.perl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howardchenhd/Syntax-awared-NMT/HEAD/Data/multi-bleu.perl -------------------------------------------------------------------------------- /Data/tokenizer.perl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howardchenhd/Syntax-awared-NMT/HEAD/Data/tokenizer.perl -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howardchenhd/Syntax-awared-NMT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howardchenhd/Syntax-awared-NMT/HEAD/README.md -------------------------------------------------------------------------------- /data_iterator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howardchenhd/Syntax-awared-NMT/HEAD/data_iterator.py -------------------------------------------------------------------------------- /nmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howardchenhd/Syntax-awared-NMT/HEAD/nmt.py -------------------------------------------------------------------------------- /script/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howardchenhd/Syntax-awared-NMT/HEAD/script/ReadMe.md -------------------------------------------------------------------------------- /script/input_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howardchenhd/Syntax-awared-NMT/HEAD/script/input_example.txt -------------------------------------------------------------------------------- /script/turn.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howardchenhd/Syntax-awared-NMT/HEAD/script/turn.bat -------------------------------------------------------------------------------- /script/turn.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howardchenhd/Syntax-awared-NMT/HEAD/script/turn.jar -------------------------------------------------------------------------------- /shuffle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howardchenhd/Syntax-awared-NMT/HEAD/shuffle.py -------------------------------------------------------------------------------- /test_gpu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howardchenhd/Syntax-awared-NMT/HEAD/test_gpu.sh -------------------------------------------------------------------------------- /train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howardchenhd/Syntax-awared-NMT/HEAD/train.sh -------------------------------------------------------------------------------- /train_nmt_zh2en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howardchenhd/Syntax-awared-NMT/HEAD/train_nmt_zh2en.py -------------------------------------------------------------------------------- /translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howardchenhd/Syntax-awared-NMT/HEAD/translate.py -------------------------------------------------------------------------------- /translate_gpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howardchenhd/Syntax-awared-NMT/HEAD/translate_gpu.py -------------------------------------------------------------------------------- /treedata_iterator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howardchenhd/Syntax-awared-NMT/HEAD/treedata_iterator.py --------------------------------------------------------------------------------