0 votes
in Deep Learning by

You have finished training a language model RNN and are using it to sample random sentences, as follows: What are you doing at each time step t?

1 Answer

0 votes
by

(i) Use the probabilities output by the RNN to randomly sample a chosen word for that time-step as 

. (ii) Then pass this selected word to the next time-step.

...