├── .gitignore ├── LICENSE ├── README.md ├── datas ├── ch.vec ├── en.vec └── translate.csv ├── seq2seq.py └── 手写AI.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shouxieai/seq2seq_translation/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shouxieai/seq2seq_translation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shouxieai/seq2seq_translation/HEAD/README.md -------------------------------------------------------------------------------- /datas/ch.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shouxieai/seq2seq_translation/HEAD/datas/ch.vec -------------------------------------------------------------------------------- /datas/en.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shouxieai/seq2seq_translation/HEAD/datas/en.vec -------------------------------------------------------------------------------- /datas/translate.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shouxieai/seq2seq_translation/HEAD/datas/translate.csv -------------------------------------------------------------------------------- /seq2seq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shouxieai/seq2seq_translation/HEAD/seq2seq.py -------------------------------------------------------------------------------- /手写AI.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shouxieai/seq2seq_translation/HEAD/手写AI.jpg --------------------------------------------------------------------------------