Model Pipeline - nn.MaxPool2d and nn.AvgPool2d
This pipeline shows how 2D pooling layers reduce image size by summarizing small regions. MaxPool2d picks the biggest number in each area, while AvgPool2d calculates the average. This helps the model focus on important features and reduces computation.