Deep Learning Exam Answers
Deep Learning Exam Answers
2. b) Neuron
5. c) Reduces the spatial dimensions of the image by taking the maximum value in each
region.
6. b) Tanh
2. A CNN consists of convolutional layers, pooling layers, and fully connected layers. The
convolution operation extracts features by applying filters to detect patterns like edges,
textures, and shapes.
3. RNNs maintain memory of previous inputs, making them effective for sequential data like
time series and speech recognition. Traditional neural networks lack this ability.
5. Overfitting occurs when a model memorizes training data but fails on new data. It can be
prevented using dropout, regularization, or increasing training data.
2. CNNs use convolutional layers to extract features, pooling layers for downsampling, and
fully connected layers for classification. Filters detect patterns like edges and shapes.
3. Overfitting happens when a model performs well on training but poorly on new data.
Identified by high training accuracy but low validation accuracy. Solutions include dropout,
regularization, and more training data.