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
请问您为什么要这么使用LSTM?
##########################
for k in range(196):
for t in range(len(encoderlayers_out) ):
h, c = self.decode_step(encoderlayers_out[t][:,k,:],(h, c))
##########################
而不是直接在每一个时间步将一层的特征放入 LSTM:下面是代码:
##########################
for t in range(len(encoderlayers_out) ):
h, c = self.decode_step(encoderlayers_out[t] ,(h, c))
##########################
The text was updated successfully, but these errors were encountered:
请问您为什么要这么使用LSTM?
##########################
for k in range(196):
for t in range(len(encoderlayers_out) ):
h, c = self.decode_step(encoderlayers_out[t][:,k,:],(h, c))
##########################
而不是直接在每一个时间步将一层的特征放入 LSTM:下面是代码:
##########################
for t in range(len(encoderlayers_out) ):
h, c = self.decode_step(encoderlayers_out[t] ,(h, c))
##########################
The text was updated successfully, but these errors were encountered: