Simple Convolutional Network

Example

We have an image x and decide is this a cat of not (0 or 1).

Input Image:


10 filters


Output Image:
so the output is


Repeat this process. Finally gets flattened to 1960 units.

Types of layer in a convolutional network

  1. Convolution (Conv)
  2. Pooling (POOL)
  3. Fully Connected (FC)