Question 25
Consider the following modified implementation of an RNN.
self.rnn = nn.RNN(embedding_dim, hidden_dim, n_layers, dropout=drop_prob, batch_first=True)
self.dropout = nn.Dropout(0.3) #line1
self.fc = nn.Linear(hidden_dim, output_size)What will be the percentage reduction in the rnn parameters due to applying line one? (Answer upto one decimal)