wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

Deep learning Batch 1

Total questions: 10

Worksheet time: 2mins

Name
Class
Date
1.

In the context of tensors, what is the order of a matrix?

a)

A) 0th-order

b)

B) 1st-order

c)

C) 2nd-order

d)

D) 3rd-order

2.

Which of the following is true about the probability density function (PDF) for continuous variables?

a)

A) The PDF must satisfy \( p(x) \leq 1 \)

b)

B) The integral of the PDF over its domain must equal 1

c)

C) The PDF can take negative values

d)

D) The PDF is only defined for discrete variables

3.

What is the primary difference between Batch Gradient Descent and Stochastic Gradient Descent (SGD)?

a)

A) SGD uses the entire dataset for each update, while Batch GD uses a single example

b)

B) SGD uses a single example for each update, while Batch GD uses the entire dataset

c)

C) SGD is slower but more accurate than Batch GD

d)

D) SGD is only used for convex functions

4.

Which of the following is a key disadvantage of Stochastic Gradient Descent (SGD)?

a)

A) It requires large memory to compute gradients

b)

B) It has high variance in parameter updates

c)

C) It converges slower than Batch Gradient Descent

d)

D) It cannot escape local minima

5.

What is the main purpose of the learning rate in gradient-based optimization?

a)

A) To control the speed of convergence

b)

B) To increase the number of iterations

c)

C) To reduce the loss function directly

d)

D) To increase the model complexity

6.

Which of the following is true about L1 regularization?

a)

A) It penalizes the square of the weights

b)

B) It is less effective than L2 regularization

c)

C) It is also known as weight decay

d)

D) It can reduce some weights to exactly zero

7.

What is the primary purpose of dropout in neural networks?

a)

A) To reduce the number of layers in the network

b)

B) To increase the learning rate

c)

C) To randomly remove nodes during training to prevent overfitting

d)

D) To reduce the number of parameters in the model

8.

Which of the following is a common technique to reduce overfitting in deep learning?

a)

A) Increasing the number of layers

b)

B) Decreasing the amount of training data

c)

C) Using dropout

d)

D) Increasing the learning rate

9.

What is the main challenge of using a very high learning rate in gradient descent?

a)

A) It may cause the algorithm to overshoot the minimum

b)

B) It will always converge to the global minimum

c)

C) It will reduce the number of iterations required

d)

D) It will increase the model's bias

10.

Which of the following is true about the Adam optimizer?

a)

A) It uses a fixed learning rate for all parameters

b)

B) It combines the benefits of Adagrad and RMSprop

c)

C) It is less efficient than SGD

d)

D) It does not use momentum