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
In Decoder's function 'call()'
output, state = self.gru(x)
When second sentence comes in, the first hidden is still in there?
Why is not the code like :
output, state = self.gru(x, initial_hidden = ...)
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
In Decoder's function 'call()'
output, state = self.gru(x)
When second sentence comes in, the first hidden is still in there?
Why is not the code like :
output, state = self.gru(x, initial_hidden = ...)
A freshman in tensorflow, thanks for help.
Beta Was this translation helpful? Give feedback.
All reactions