Open jessmed749 opened 1 day ago
A CNN (Convolutional Neural Network) is a type of deep learning neural network specifically designed for processing structured grid data, such as images.
CNN Architecture Components:
Convolutional Layer:
Activation Function (usually ReLU):
Pooling Layer (typically Max Pooling):
Fully Connected (Dense) Layer:
Output Layer:
Step 3: Normalized and reshaped the data. Study the architecture of CNNs. Learn about convolutional layers, pooling layers, and fully connected layers.
Details:
Normalized pixel values from 0-255 to 0-1 by dividing by 255. Reshaped images for CNN input to (28, 28, 1).
Decide how many layers and what types of layers to use in the model. Activation functions and output layer considerations for classification.
Outcome: Data preprocessing pipeline created and tested with the initial training and test images.