Forward Propagation

Zehra
1 min readJun 16, 2020

Looking at a single Neuron:

Single Neuron

In order to generate some output, the input data should be fed in the forward direction only. The data should not flow in reverse direction during output generation otherwise it would form a cycle and the output could never be generated. Such network configurations are known as feed-forward network. The feed-forward network helps in forward propagation.

--

--