ML VISUAL LAB / ML Methods
Convolutional Neural Network
Intuition
Edit input pixels, choose a kernel, and watch feature maps produced by convolution.
Core Formula
Y[i,j] = sum_m sum_n X[i+m,j+n] K[m,n] + b
When to use it?
Local pattern extraction in images, video, and grid-like data.