Tuesday 26 December 2023

Deep Learning and Reinforcement Learning Week 3 All Quiz

Practice: Optimizers and Data Shuffling 

1. True/False. Multi-layer perceptrons always have a hidden layer.



ANSWER= (A) True

 

2. True/False. Multi-layer perceptrons are considered a type of feedforward neural network.



ANSWER= (A) True

 

3. Select the correct rule of thumb regarding training a neural network. In general, as you train a neural network:





ANSWER= (B) The log loss decreases and the accuracy increases


Week 3 Final Quiz  

1. What is the main function of backpropagation when training a Neural Network?





ANSWER= (B) Make adjustments to the weights

 

2. (True/False) The “vanishing gradient” problem can be solved using a different activation function



ANSWER= (A) True

 

3. (True/False) Every node in a neural network has an activation function.



ANSWER= (B) False

 

4. These are all activation functions except:





ANSWER= (C) Leaky hyperbolic tangent

 

5. Deep Learning uses deep Neural Networks for all these uses, except





ANSWER= (C) Cases in which explainability is the main objective

 

6. These are all activation functions except:





ANSWER= (D) Pruning

 

7. (True/False) Optimizer approaches for Deep Learning Regularization use gradient descent:



ANSWER= (B) False

 

8. Stochastic gradient descent is this type of batching method:





ANSWER= (A) online learning

 

9. (True/False) The main purpose of data shuffling during the training of a Neural Network is to aid convergence and use the data in a different order each epoch.



ANSWER= (A) True

 

10. This is a high-level library that is commonly used to train deep learning models and runs on either TensorFlow or Theano:





ANSWER= (B) Keras

No comments:

Post a Comment

Understanding Dependency Injection in Spring: A Simple Guide

When developing applications, it is typical for one class to rely on another for proper operation. For example, an automobile need an engine...