Description of the Problem
Translate a sentence from one language to another language.
And the architecture that they use is motivated by the same encoder-decoder architecture.
Normal Mechanism of Encoder-decoder
Normal LSTM 모델은 Underfitting이 발생하는 문제가 있음.
이러한 문제를 해결하는 방법은 여러가지가 있다.
첫번째, Stacking LSTM layers
LSTM을 단순히 층층히 쌓아 각 LSTM이 이전의 hidden state 값을 통해 hidden state 값을 만들어 다음으로 전달 하는 방식이다.
허나 Stacked LSTMs도 문제점을 가지고 있다.