WorksheetsNLP_8_RNN
Total questions: 10
Worksheet time: 7mins
RNNs are usually more accurate than FFNN
In the context of an RNN cell, what does the term 'recurrence' refer to?
In RNNs, what is the key significance of the hidden state (h_t) at each time step?
Which of the following is NOT True about RNNs
The output of the RNN is always the same as h(t)
The dimension of the weight matrix depends of the shape of the input x(t)
The main activation function is either ReLU or tanh
RNNs are designed to handle sequential data
The hidden state accumulates memory from previous inputs
Check the wrong statement :
Training an RNN on very long sequences may easily result in vanishing Gradient problem
In sequence labeling task, at each time step, the predicted probability distribution over the vocabulary is created using a softmax activation applied to the hidden layer output.
In Language Modeling Task, the loss function at a given time step is calculated as the negative log probability of the correct target word in the vocabulary.
The hidden state at the first time step is initialized to the embedding of the first word in the training sequence.
In RNN Language Modeling Task, the objective is to maximize the probability of the correct word at the current time step, given the context seen so far.
