You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"milk"라는 단어에 해당하는 불어 단어 "lait". 이 둘 사이의 path length를 보면 상당히 길다. maximum path length는 O(n * m)이다. (n을 인코더의 길이, m을 디코더의 길이라고 한다면). LSTM / GRU는 게이트 개념의 활용으로 분명 vanishing gradient, exploding gradient 문제를 줄여주었으나, 구조적 기반은 여전히 RNN을 그대로 사용하고 있었기에 O(n*m)은 동일했으며, 때문에 긴 문장의 경우 기울기가 불안정해지는 고질적인 문제는 여전히 존재했다.
Contents
references
The text was updated successfully, but these errors were encountered: