Deep Learning
Deep Learning
Deep Learning
1. Which neural network has only one hidden layer between the input and output?
2. Deep learning algorithms are _______ more accurate than machine learning
algorithms in image classification
1. 0.37%
2. 0.41%
3. 33%
4. 0.4%
Answer: 0.41%
1. 3
2. 4
3. 2
4. 5
Answer: 4
1. unstructured data
2. structured data
3. None of the above
4. All of above
8. Which of the following functions can be used as an activation function in the output
layer if we wish to predict the probabilities of n classes (p1, p2..pk) such that the sum of
p over all n equals to1?
1. ReLu
2. Softmax
3. Tanh
4. Sigmoid
Answer: Softmax
9. In a neural network, knowing the weight and bias of each neuron is the most
important step. If you can somehow get the correct value of weight and bias for each
neuron, you can approximate any function. What would be the best way to approach
this?
1. Search every possible combination of weights and biases till you get the best value
2. Iteratively check that after assigning a value how far you are from the best values, and
slightly change the assigned values values to make them better
3. Assign random values and pray to God they are correct
4. None of these
Answer: Iteratively check that after assigning a value how far you are from the best
values, and slightly change the assigned values values to make them better
1. [5 x 1] , [8 X 5]
2. [1 X 5] , [5 X 8]
3. [8 X 5] , [ 1 X 5]
4. [8 X 5] , [5 X 1]
Answer: [5 x 1] , [8 X 5]
1. Boosting
2. Bagging
3. Stacking
4. None of above
Answer: Bagging
14. Which of the following would have a constant input in each epoch of training a Deep
Learning model?
15. The number of nodes in the input layer is 10 and the hidden layer is 5. The
maximum number of connections from the input layer to the hidden layer
are__________
1. more than 50
2. less than 50
3. it is an arbitrary value
4. 50
Answer: 50
16. Assume a simple MLP model with 3 neurons and inputs=1,2,3. The weights of the
input neurons are 4,5, and 6 respectively. Assume the activation function is a linear
constant value of 3. What will be the output?
1. 64
2. 128
3. 32
4. 96
Answer: 96
17. The input image has been converted into a matrix of size 28×28 and a kernel/filter of
size 7×7 with a stride of 1. What will be the size of the convoluted matrix?
1. 2
2. 21×21
3. 20×20
4. 25×25
Answer: 22×22
1. asynchronous operation
2. fully connected network with both hidden and visible units
3. stochastic update
4. All of the above
19. Which, if any, of the following propositions is true about fully-connected neural
networks(FCNN)?
20. In which of the following applications can we use deep learning to solve the
problem?
24. Which of the following statements is true when you use 1×1 convolutions in a CNN?
1. Numpy
2. Deep Learning
3. Scipy
4. All of the above
27. The two key ideas of deep learning for computer vision________
1. To control the output of a neural network, you need to be able to measure how far this
output is from what you expected
2. To calculate loss in banks
3. These are the predicted values only
4. These are true targets of data
Answer: To control the output of a neural network, you need to be able to measure how
far this output is from what you expected
1. Machine learning tend to focus on learning 512 layers of representations of the data
2. Machine learning tend to focus on learning only one or two layers of representations
of the data
3. Machine learning tend to focus on learning 64 layers of representations of the data
4. Machine learning tend to focus on learning 10 layers of representations of the data
Answer: Machine learning tend to focus on learning only one or two layers of
representations of the data