2019-08-29 17:17:15 问题描述:比较RNN,GRU,LSTM. 问题求解: 循环神经网络 RNN 传统的RNN是维护了一个隐变量 ht 用来保存序列信息,ht 基于 xt 和 ht-1 来计算 ht . ht = g( Wi xt + Ui ht-1 + bi ) yt = g( Wo ht + bo ) 门控循环神经网络 GRU 门控循环神经网络(Gated Recurrent Unit,GRU)中引入了门控机制. Update:Γu = g( Wu xt + Uu ht-1…