Tuesday 26 December 2023

Deep Learning and Reinforcement Learning Week 4 All Quiz

Practice: Convolutional Neural Networks 

1. Given the syntax below, select the option that will best improve a CNN model that you are trying to fit.
1. model.fit(x_train, y_train, batch_size=batch_size, epochs=100, validation_data=(x_test, y_test))





ANSWER= (D) Add shuffling, by adding “, shuffle=True” at the end.

 

2. Which of the following statements is TRUE about a kernel in a Convolutional Layer applied to an image?





ANSWER= (B) Kernels detect local features in an image such as lines, corners, and edges.


Week 4 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. Which of the following IS NOT a benefit of Transfer Learning?





ANSWER= (C) Improving the speed at which large models can be trained from scratch

 

14. Which of the following statements about using a Pooling Layer is TRUE?





ANSWER= (A) Pooling can reduce both computational complexity and overfitting.

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...