Question 2
Consider a vanilla Recurrent Neural Network (RNN) and an LSTM network with the same input dimension, hidden dimension, and output dimension.
Statement 1: The number of trainable parameters in a vanilla RNN is higher than that in an LSTM network. Statement 2: An LSTM has a higher number of parameters because it contains multiple gates (input gate, forget gate, output gate, and candidate state), each having separate weight matrices and biases.
Choose the correct option from the following.
Statement 1 is true, and Statement 2 is the correct reason.
Statement 1 is true, but Statement 2 is false.
Statement 1 is false, but Statement 2 is true.
Statement 1 is false, and Statement 2 is false.