CNN architecture

In multilayer networks, such as MLP or DBN, the outputs of all neurons of the input layer are connected to each neuron in the hidden layer, so the output will again act as the input to the fully-connected layer. In CNN networks, the connection scheme that defines the convolutional layer is significantly different. The convolutional layer is the main type of layer in CNN, where each neuron is connected to a certain region of the input area called the receptive field.

In a typical CNN architecture, a few convolutional layers are connected in a cascade style, where each layer is followed by a rectified linear unit (ReLU) layer, then a pooling layer, then a few more convolutional layers (+ReLU), then another pooling layer, and ...

Get Scala Machine Learning Projects 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.