MLS+1+-+Presentation
MLS+1+-+Presentation
com
R8L0PN473F Neural Networks
1. What is a neural network and what do different layers in a neural network represent?
2. What is an activation function and what are the different types of activation functions?
● Input layer
○ Represents dimensions of the input vector (one node for
each dimension)
[email protected]
R8L0PN473F
● Hidden layer(s)
○ Represents the intermediary nodes that divide the input
space into regions with (soft) boundaries
○ Given enough hidden nodes, we can model any arbitrary
input-output relation
○ It takes in a set of weighted input and produces output
through an activation function
● Output layer
○ Represents the output of the neural network
○ Mostly, it doesn't have anisactivation
This file function
meant for personal use by [email protected] only.
Sharing or publishing the contents in part or full is liable for legal action.
Proprietary content. © Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited. Image Source 4
Activation functions
● An artificial neural network works in three steps:
○ First, it multiplies the input signals with corresponding
weights
○ Second, it adds the weighted signals together
○ Third, it converts the result into another value using a
mathematical transformation (activation function)
● For the third step, there are multiple mathematical functions
[email protected]
R8L0PN473F available that can be used for the activation function.
● The purpose of the activation function is to act like a switch for the neuron.
● The activation function is critical to the overall functioning of the neural network. Without it, the whole
neural network will mathematically become equivalent to one single neuron!
● The activation function is one of the critical components that give neural networks the ability to deal with
complex problems, by tackling the nonlinearity of the patterns in the data.
[email protected]
R8L0PN473F
Learning Rate:
● It is a hyperparameter which determines the step size (the
amount by which the weights are updated).
● We can try out different values of learning rate to improve
the results.
This file is meant for personal use by [email protected] only.
Sharing or publishing the contents in part or full is liable for legal action. Image Source
Proprietary content. © Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited. 9
Case Study
[email protected]
R8L0PN473F