Recurrent Networks Flashcards
Mention an example of a sequence-to-vector rnn
Genre classification of a song
Mention an example of a vector-to-sequence rnn
Image captioning
Mention an example of different input and output sequence length rnn
Speech interpretation/machine translation
Name all three gating mechanism of LSTMS
input gate (blocking writing), forget gate and output gate (blocking reading)
How do we create deep RNNs?
Multilayer perceptron: n hidden layers
Stacking. I.e stacked RNNs. We take the states of a rnn layer and use it as input into a new RNN.
What is the memory, compute and serial steps for feed forward, backprop and backprob using target?
- O(1), O(T), O(T)
- O(T), O(T), O(T)
- O(1), O(T), O(1)
Why is it useful to process data sequentially?
some Information come in sequential settings, like speech recognition.
An immediate response, limited bandwidth, limited computational power, limited storing capabilities.
What aspect of a RNN is it a LSTM improves upon?
Learning long-term dependencies, accounting for exploding/vanishing gradients.