Usually, we would use cell.zero_state
as the initial_state
of tf.nn.dynamic_rnn
.
Now, I'm wondering what's default initial_state
in tf.nn.dynamic_rnn
if we don't set initial_state
.
The most similar question I can find is Setting initial state in dynamic RNN
But I can't understand what does scratch mean in the answer:
If you don't set the initial_state, it will be trained from scratch as other weight matrices do.