Severin Perez

Reference: Feedforward Neural Network

August 21, 2020

A feedforward neural network (aka multilayer perceptron or deep feedforward network) is a supervised learning network in which information only flows forward. Unlike recurrent neural networks, which have feedback connections, nodes in a feedforward neural network can only pass input in the direction of the output layer.

The goal of a feedforward network is to approximate some function that will map input to a category , . The network defines the mapping and learns the parameters of to develop the best function approximation. The network does this by means of a composed set of functions, each of which describes a different layer in the network:

The depth of the network is the number of layers, the interior of which are “hidden” because they do not show the desired output. The goal of the interior functions is to help approximate .

As the input moves through the network, some activation function calculates the layer values, based on the sum of the product of the weights and input, and determines whether the node (neuron) should fire. The function can compute continuous and differentiable output (unlike a step function). This enables a back-propagation algorithm to compute gradients, which will in turn be used to improve the performance of each layer.


You might enjoy...


© Severin Perez, 2021