in the first colab of W1 conv net "Ungraded Lab using more sophisticated images…"we notice that output of the first conv layer looks like a cat when the output of the last conv layer not ; why is that ?
because In theory :
The outputs of the first layers in a Convolutional Neural Network (CNN) typically do not look like the original cat image. The early layers capture simple and local features, such as edges, corners, and basic textures. These features are abstract representations of the input image and may not resemble the original image to the human eye.
As the data passes through deeper layers, the network learns to combine and transform these low-level features into more complex and abstract representations. The final layers, which are often fully connected layers, produce high-level features that are used for making predictions or classifications.