Understanding convolution

Convolution is the central concept behind the CNN architecture. In simple terms, convolution is a mathematical operation that combines information from two sources to produce a new set of information. Specifically, it applies a special matrix known as the kernel to the input tensor to produce a set of matrices known as the feature maps. The kernel can be applied to the input tensor using any of the popular algorithms.

The most commonly used algorithm to produce the convolved matrix is as follows:

N_STRIDES = [1,1]1. Overlap the kernel with the top-left cells of the image matrix.2. Repeat while the kernel overlaps the image matrix:    2.1 c_col = 0    2.2 Repeat while the kernel overlaps the image matrix: 2.1.1 set c_row ...

Get Python: Advanced Guide to Artificial Intelligence now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.