DeepAI AI Chat
Log In Sign Up

Neural Machine Translation

What is Neural Machine Translation?

Neural Machine Translation is a machine translation approach that applies a large artificial neural network toward predicting the likelihood of a sequence of words, often in the form of whole sentences. Unlike statistical machine translation, which consumes more memory and time, neural machine translation, NMT, trains its parts end-to-end to maximize performance. NMT systems are quickly moving to the forefront of machine translation, recently outcompeting traditional forms of translation systems.

How does Neural Machine Translation work?

As referenced above, unlike traditional methods of machine translation that involve separately engineered components, NMT works cohesively to maximize its performance. Additionally, NMT employs the use of vector representations for words and internal state. This means that words are transcribed into a vector defined by a unique magnitude and direction. Compared to phrase-based models, this framework is much simpler. Rather than separate component like the language model and translation model, NMT uses a single sequence model that produces one word at a time.

Source

The NMT uses a bidirectional recurrent neural network, also called an encoder, to process a source sentence into vectors for a second recurrent neural network, called the decoder, to predict words in the target language. This process, while differing from phrase-based models in method, prove to be comparable in speed and accuracy.

Applications of Neural Network Translation

One of the most popular translation machines in the world is Google Translate. The system uses Google Neural Machine Translation to increase its fluency and accuracy. The system not only applies a large data set for training its algorithms, its end-to-end design allows the system to learn over time and create better, more natural translations. Google Neural Machine Translation can even process what are called "zero-shot translations." For example, the translation from French to Spanish is a zero-shot translation because it is a direct translation. Previously, Google Translate would translate the initial language into English, and then translate that English to the target language.