Live data from Hacker News

OpenNMT: Open Source Neural Machine Translation in Torch

github.com

1–3 of 3 posts

Re: OpenNMT: Open Source Neural Machine Translation in Torch

#2
Don't use this. (Lua)Torch is obsolete.

Instead, if you want OpenNMT specifically for some reason then you should use either https://github.com/OpenNMT/OpenNMT-tf (TensorFlow) or https://github.com/OpenNMT/OpenNMT-py (PyTorch).

I'm not sure what the best open source neural translation model is, but Google's Transformer models are very strong (and can be trained on TPUs, which is cheap(er) and fast): https://github.com/tensorflow/tensor2tensor/#translation

Re: OpenNMT: Open Source Neural Machine Translation in Torch

#3
post #2

Don't use this. (Lua)Torch is obsolete. Instead, if you want OpenNMT specifically for some reason then you should use either https://github.com/OpenNMT/OpenNMT-tf (TensorFlow) or https://github.com/OpenNMT/OpenNMT-py (PyTorch). I'm not sure what the best open source neural translation model is, but Google's Transformer models are very strong (and can be trained on TPUs, which is cheap(er) and fast): https://github.co…

I would choose the framework according to your goals - OpenNMT-py is very research-oriented and hackable. It supports Transformer, copy-attention, image/speech/text2text and more. If you are more production-focused, maybe MarianNMT or OpenNMT-tf are for you.