Research Proposal Presentation
Research Proposal Presentation
mining
ARTIFICIAL NEURAL
NETWORK
Mithesh 20EG107131
Sai Sampreeth Reddy 20EG107142
Umesh Reddy 20EG107140
Manish 20EG107158
Sai Vivek 20EG107144
Sai Kiran 20EG107160
• History of Artificial Neural Networks
• Fundamentals of ANN
AGENDA • Neural Network Architecture
• Properties of ANN
• Sigmoid takes a real value as the input and outputs another value between 0 and 1. The
sigmoid activation function translates the input ranged in (-∞,∞) to the range in (0,1)
• The tanh function is just another possible function that can be used as a non-linear
activation function between layers of a neural network. It shares a few things in
common with the sigmoid activation function. Unlike a sigmoid function that will map
input values between 0 and 1, the Tanh will map values between -1 and 1.
3. ReLU Activation Functions :
• The formula is deceptively simple: max(0,z). Despite its name, Rectified Linear Units,
it’s not linear and provides the same benefits as Sigmoid but with better performance.
4. Maxout :
• The Maxout activation is a generalization of the ReLU and the leaky ReLU functions. It
is a piecewise linear function that returns the maximum of inputs, designed to be used
in conjunction with the dropout regularization technique.
The rectified linear activation function, or ReLU
activation function, is perhaps the most common
function used for hidden layers. It is common because
it is both simple to implement and effective at
overcoming the limitations of other previously popular
activation functions, such as Sigmoid and Tanh.
PERCEPTRON
• Basic unit in a neural network
• Linear separator
• N inputs, x1 ... xn
• Weights for each input, w1 ... wn
• A bias input x0 (constant) and associated weight w0
• Weighted sum of inputs, y = w0x0 + w1x1 + ... +
wnxn
• A threshold function or activation function,
i.e 1 if y > t, -1 if y <= t
Convolutional Neural Network
A convolutional neural network is a feed-forward neural network that is generally
used to analyze visual images by processing data with grid-like topology. It’s also
known as a ConvNet. A convolutional neural network is used to detect and classify
objects in an image.
In CNN, every image is represented in the form of an array of pixel values.
Back to Agenda
THANK YOU