Wednesday 27 December 2023

Deep Learning and Reinforcement Learning Week 6 All Quiz

Practice: Recurrent Neural Networks 

1. (True/False) Recurrent Neural Networks are a class of neural networks that allow previous outputs to be used as inputs while having hidden states.



ANSWER= (A) True

 

2. (True/False) Recurrent Neural Networks are well suited in applications in which the context is important and needs to be incorporated in the prediction.



ANSWER= (A) True

 

3. These are the two main outputs of a recurrent neural network:





ANSWER= (A) Prediction and state


Practice: LSTM and GRU  

1. (True/False) The main motivation behind LSTM is to make it easier to keep information from distant past in current memory without reinforcement.



ANSWER= (A) True

 

2. RNNs are augmented with the following Gate Units:





ANSWER= (B) Input gate, forget gate, output gate

 

3. Select the correct assertion regarding the gate units of RNNs:





ANSWER= (D) A and B

 


Practice: Regularization  

1. Which regularization technique can shrink the coefficients of the less important features to zero?





ANSWER= (D) L1

 

2. (True/False) Batch Normalization tackles the internal covariate shift issue by always normalizing the input signals, thus accelerating the training of deep neural nets and increasing the generalization power of the networks.



ANSWER= (A) True

 

3. Regularization is used to mitigate which issue in model training?





ANSWER= (C) Overfitting

 


Week 6 Final Quiz  

1. (True/False) RNN models are mostly used in the fields of natural language processing and speech recognition.



ANSWER= (A) True

 

2. (True/False) GRUs and LSTM are a way to deal with the vanishing gradient problem encountered by RNNs.



ANSWER= (A) True

 

3. (True/False) GRUs will generally perform about as well as LSTMs with shorter training time, especially for smaller datasets.



ANSWER= (A) True

 

4. (True/False) The main idea of Seq2Seq models is to improve accuracy by keeping necessary information in the hidden state from one sequence to the next.



ANSWER= (A) True

 

5. (True/False) The main parts of a Seq2Seq model are: an encoder, a hidden state, a sequence state, and a decoder.



ANSWER= (B) False

 

6. Select the correct option, in the context of Seq2Seq models:





ANSWER= (C) The Greedy Search algorithm selects one best candidate as an input sequence for each time step while the Beam Search produces multiple different hypothesis based on conditional probability.

 

7. Which is the gating mechanism for RNNs that include a reset gate and an update gate?





ANSWER= (A) GRUs

8. LSTM models are among the most common Deep Learning models used in forecasting. These are other common uses of LSTM models, except:







ANSWER= (D) Generating Images

No comments:

Post a Comment

Pascal's Triangle Visualization About Pascal's Triangle Pascal'...