1. Overview

In this tutorial, we’ll talk about the two most popular types of layers in neural networks, the Convolutional (Conv) and the Fully-Connected (FC) layer. Both of them constitute the basis of almost every neural network for many tasks, from action recognition and language translation to speech recognition and cancer detection.

First, we’ll introduce the topic, and then we’ll define each type of layer separately. Finally, we’ll compare the two types of layers, illustrating their differences.

2. Fully Connected Layers (FC Layers)

In an FC layer, all the neurons of the input are connected to every neuron of the output layer.

Specifically, let’s suppose that we have 7 input neurons (x_1, x_2, x_3, x_4, x_5, x_6, x_7) and 5 output neurons (y_1, y_2, y_3, y_4, y_5). In an FC layer, we apply a weighted linear transformation to the input neurons and then pass the output through a non-linear activation function. So, the formula for computing the value of the output neurons in an FC layer is:

\mathbf{y_i = f \left(\sum_{j=1}^7 w_{ij} \ x_j \right)} where i \in [1, 5]

In the figure below, we can see what the neurons in the example FC layer look like:

fc

In an FC layer with \mathbf{n} input and \mathbf{m} outputs, we have \mathbf{n \times m} weights since each pair of input and output neurons correspond to a weight \mathbf{w_{ij}}.

3. Convolutional Layers (Conv Layers)

The basic operation of a convolutional layer is a convolution that is performed between an image and a kernel (or filter) that is equal to a square matrix. First, we perform element-wise multiplication between the pixels of the filter and the respective pixels of the image. Then, we sum up these multiplications into a single output value. The whole procedure is repeated for every pixel of the input image.

In the below image, we can see how convolution works between a 6 \times 6 image and a 3 \times 3 filter. In the depicted step, we compute the convolution for the pixel (2, 2) of the image generating the below image patch:

convolution

In a convolutional layer, we perform convolution between the input neurons and some learnable filters, generating an output activation map of the filter. So, the number of weights is not dependent on the number of input neurons like in the FC layer. In a Conv layer, the number of weights is equal to the size of the kernel.

4. Differences

The basic difference between the two types of layers is the density of the connections. The FC layers are densely connected, meaning that every neuron in the output is connected to every input neuron. On the other hand, in a Conv layer, the neurons are not densely connected but are connected only to neighboring neurons within the width of the convolutional kernel. So, if the input is an image and the number of neurons is large, a Conv layer is more suitable.

A second main difference between them is weight sharing. In an FC layer, every output neuron is connected to every input neuron through a different weight w_{ij}. However, in a Conv layer, the weights are shared among different neurons. This is another characteristic that enables Conv layers to be used in the case of a large number of neurons.

5. Conclusion

In this tutorial, we presented the Conv and the FC layer of a neural network. First, we introduced the terms, and then we discussed each layer separately, illustrating their differences.

Comments are open for 30 days after publishing a post. For any issues past this date, use the Contact form on the site.