Correct Answer : 1943
Explanation : The history of deep learning dates back to 1943 when Warren McCulloch and Walter Pitts created a computer model based on the neural networks of the human brain.
Correct Answer : Frank Rosenblatt
Explanation : We conclude that Frank Rosenblatt developed and explored all the basic ingredients of the deep learning systems of today, and that he should be recognized as a Father of Deep Learning, perhaps together with Hinton, LeCun and Bengio who have just received the Turing Award as the fathers of the deep learning revolution.
Correct Answer : 3
Explanation : Deep learning algorithms are constructed with 3 connected layers : * inner layer* outer layer* hidden layer
Correct Answer : Deep learning
Explanation : Deep learning is a computer software that mimics the network of neurons in a brain. It is a subset of machine learning and is called deep learning.
Correct Answer : inner layer
Explanation : The first layer is called the Input Layer. The last layer is called the Output Layer. All layers in between are called Hidden Layers.
Correct Answer : a more precise but slower update.
Correct Answer : Pooling
Correct Answer : All of the above
Explanation : We can use neural network to approximate any function so it can theoretically be used to solve any problem.
Explanation : 1×1 convolutions are called bottleneck structure in CNN.
Correct Answer : Recurrent neural networks
Explanation : Recurrent neural networks (RNNs) : RNN is a multi-layered neural network that can store information in context nodes, allowing it to learn data sequences and output a number or another sequence.
Correct Answer : Convolutional Neural Networks
Explanation : Convolutional Neural Networks(CNN) is a multi-layered neural network with a unique architecture designed to extract increasingly complex features of the data at each layer to determine the output. CNNs are well suited for perceptual tasks.
Correct Answer : unstructured data
Explanation : CNN is mostly used when there is an unstructured data set (e.g., images) and the practitioners need to extract information from it.
Correct Answer : Shallow neural network
Explanation : Shallow neural network : The Shallow neural network has only one hidden layer between the input and output.
Correct Answer : 50
Explanation : Since MLP is a fully connected directed graph, the number of connections are a multiple of number of nodes in input layer and hidden layer.
Correct Answer : 22x22
Explanation : The size of the convoluted matrix is given by C=((I-F+2P)/S)+1, where C is the size of the Convoluted matrix, I is the size of the input matrix, F the size of the filter matrix and P the padding applied to the input matrix. Here P=0, I=28, F=7 and S=1. There the answer is 22.
C=((I-F+2P)/S)+1
P=0, I=28, F=7
S=1
Correct Answer : All of the Above
Correct Answer : None of the above
Correct Answer : [5 x 1] , [8 X 5]
Explanation : The size of weights between any layer 1 and layer 2 Is given by [nodes in layer 1 X nodes in layer 2].
Explanation : All of the above are Common uses of RNNs.
Correct Answer : Both A and B
Explanation : Both A and B are Limitations of Deep Learning.
Correct Answer : 41%
Explanation : Deep Learning can outperform traditional method. For instance, deep learning algorithms are 41% more accurate than machine learning algorithm in image classification, 27% more accurate in facial recognition and 25% in voice recognition.
Correct Answer : Weight between input and hidden layer
Explanation : Weights between input and hidden layer are constant.
Correct Answer : Softmax
Explanation : Softmax function is of the form in which the sum of probabilities over all k sum to 1.
Correct Answer : False
Explanation : This is not always true. If we have a max pooling layer of pooling size as 1, the parameters would remain the same.
Correct Answer : True
Explanation : Option A is correct. This is because from a sequence of words, you have to predict whether the sentiment was positive or negative.
Correct Answer : 96
Explanation : The output will be calculated as 3(1*4+2*5+6*3) = 96
Correct Answer : A feedback network with hidden units and probabilistic update
Explanation : Boltzman machine is a feedback network with hidden units and probabilistic update.