CNN Visualizer

Step through convolutional neural network layers � visualize feature maps, kernels, and pooling

Network Pipeline

?
?
?
?
?
?
?

Feature Maps � InputStep 1/8

Map
88

Image Input

Layer Info

TypeINPUT
Dimensions881

Dimensions Pipeline

Input881
Conv2D663
ReLU663
MaxPool333
Conv2D116
ReLU116
Fully Connected111
Output111

Summary

Input: 8�8 grayscale image (64 pixels)

Conv layers: 2 with 9 filters

Pooling: Reduces spatial dimensions by 2�2

Output: 3 class probabilities

How it works

Conv: Slides filters over input to produce feature maps.

ReLU: Applies max(0, x) element-wise for non-linearity.

Pool: Downsamples by taking max in each window.

FC: Connects all features to output neurons for classification.