DL Unit 3 Notes PPT
DL Unit 3 Notes PPT
• Convolution and Pooling Layers: In the earlier layers of a CNN, convolutional and pooling
operations are applied to the input data, resulting in feature maps that capture various
patterns and features in the input.
• Flatten Layer: After passing through several convolutional and pooling layers, the output
feature maps have a 3D shape (height, width, depth), where depth corresponds to the number
of filters or channels. The Flatten Layer takes this 3D output and "flattens" it into a 1D vector
by concatenating all the values together.
• Fully Connected Layers: The flattened vector is then passed to fully connected layers (also
known as dense layers) that perform classification, regression, or other tasks. These layers
can handle the flattened data as they are similar to the layers found in traditional neural
networks.