├── .gitignore ├── LICENSE ├── README.md ├── analyze_data.py ├── config.py ├── data_gen.py ├── demo.py ├── extract.py ├── images └── dataset.png ├── models.py ├── pre_process.py ├── train.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | __pycache__/ 3 | data/ 4 | models/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Machine-Translation-v2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Machine-Translation-v2/HEAD/README.md -------------------------------------------------------------------------------- /analyze_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Machine-Translation-v2/HEAD/analyze_data.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Machine-Translation-v2/HEAD/config.py -------------------------------------------------------------------------------- /data_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Machine-Translation-v2/HEAD/data_gen.py -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Machine-Translation-v2/HEAD/demo.py -------------------------------------------------------------------------------- /extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Machine-Translation-v2/HEAD/extract.py -------------------------------------------------------------------------------- /images/dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Machine-Translation-v2/HEAD/images/dataset.png -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Machine-Translation-v2/HEAD/models.py -------------------------------------------------------------------------------- /pre_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Machine-Translation-v2/HEAD/pre_process.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Machine-Translation-v2/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Machine-Translation-v2/HEAD/utils.py --------------------------------------------------------------------------------