Questions tagged [bidirectional-rnn]

3 questions
1
vote
0 answers

Do bi-directional RNNs necessarily use 100% teacher forcing?

I typically think of teacher forcing as optional when training an RNN. We may either: use the output of time-step $t$ as the input to time-step $t+1$ use the $(t+1)$th input as the input to time-step $t+1$ When I actually sat down to write a…
1
vote
1 answer

Do Seq2Seq models and the Bidirectional RNN do the same thing?

It seems to me that Seq2Seq models and Bidirectional RNNs try to do the same thing. Is that true? Also, when would you recommend one setup over another?
0
votes
0 answers

What is all necessary types of data for a bidirectional RNN to learn embeddings?

Bidirectional RNNs are used for generating the semantic vectors of the text at the sentence level and word level. In order to train a CNN for the classification tasks, images, and labels/outputs are required in general. If the data required is…