UNIT - 5 Lecture 2
UNIT - 5 Lecture 2
Neural Network
Lecture – 2
Feedforward Neural Networks
• A Feedforward Neural Network is the most basic type of artificial neural
network where connections between nodes do not form a cycle.
Feedforward Neural Networks
• Data moves in one direction — from input to output — without looping
back.
• It’s called “feedforward” because the data is fed forward through the
layers of the network.
Feedforward Neural Networks
Structure of FNN
• A typical FNN consists of:
• Input Layer : Takes the features of the
input data (e.g., pixels of an image,
exam scores, etc.)
• Hidden Layer(s) : Performs
transformations using weights, biases,
and activation functions.
• Output Layer : Produces the final result,
e.g., prediction (yes/no, digit class, etc.)
Working of Feedforward Neural
Networks
• Input : Input features are passed to the input layer.
• Weighted Sum (Z): Each neuron does a weighted sum
Where,
Working of Feedforward Neural
Networks
• Activation Function : The weighted sum
goes through an activation function (like
ReLU, sigmoid, etc.) to introduce non-
linearity.