SlideShare a Scribd company logo
1 of 3
Download to read offline
International Refereed Journal of Engineering and Science (IRJES)
ISSN (Online) 2319-183X, (Print) 2319-1821
Volume 2, Issue 10 (October 2013), PP. 12-14

A study of neural network algorithms
Namrata Aneja
(M.C.A., M.Phill.), Dyal Singh College, Karnal., Haryana, India.
Abstract:- In this research paper I have tried to accumulate few different theories prevailing regarding neural
networks algorithms. All the different theories have a different aspect to consider and have a different idea to
work on. Though all have different process of gathering weights, different variables and parameters and
different points , logics to establish, but one thing is common they all have used learning methods and have
been successful in doing so.

I.

INTRODUCTION

The human brain is one of the most advanced forms of computer system. The neural network is
controlled by the brain and through it; the brain is able to control various functions of the rest of the body. Due
to this, computer scientists have undertaken deep study over the years of evolution of computing. This is the
reason why several algorithms simulating the human neural networks have been invented. They are especially
useful in the field of artificial intelligence.

II.

BACK PROPAGATION ALGORITHM

Several algorithms have been developed in neural networks and one of them is the backward
propagation algorithm. It is an intelligent network whose name is derived from its learning mechanism. It learns
through experience/example. According to the requirements of the task, the algorithm alters the weights
attached to the network. After it completes its training, it will output the results based on the original inputs. It is
best suited for tasks involving recognition of patterns and mapping them onto actions. After the first few
experiences, the algorithm learns and is able to conduct subsequent mapping independently.
The training of the algorithm begins by setting all the network weights to a small value (between -1 and
1). After application of the required input pattern, the results will be incorrect since the network weights are
assigned randomly. To rectify this, the error is calculated by subtracting the output from what should have been
the correct output. This is called supervised training where the input and expected output are already known.
Based on the results of the calculation, the network weights are changed. The error keeps getting smaller with
each error calculation and weight change until finally the results are acceptable. The figure below illustrates the
learning process of a neural network in recognizing the first four letters of the alphabet.

From the example above, after several iterations of changing the network weights, the network should
be able to correctly recognize the letters. At this stage, it is safe to stop the training since the network has been
fully trained. However, the decision requires there be a set value of minimum error at which the training can
stop. A validation set can also be used to stop the training since the network may slow down from overtraining

www.irjes.com

12 | Page
A study of neural network algorithms
and being too correct. The backward propagation algorithm is very good at recognizing patterns. However, it
lacks the capability to recognize patterns in a noisy environment with many distractions.

III.

BACK PROPAGATION THROUGH TIME

The back propagation through time algorithm is another algorithm designed for the purpose of training
networks. It is a variant of the back propagation algorithm that is used for recurrent networks training them
through discrete time steps. Random numbers of feedback iterations may be included in the algorithm.
However, the algorithm may lack connections in its inputs (Amir et al 2007).
This algorithm has several variations that have been widely used. The first is the back propagation
through time with online update algorithm. Each weight’s gradient is calculated and added to the back step
copies of previous layers. The change in weights of the previous pattern is also factored in. The algorithm is
especially useful in large networks since the updates of the patterns are made much more frequently.
Another variation of the back propagation through time algorithm is the batch propagation though time. The
gradient for each weight is factored in by averaging it over the entire set undergoing the training.
Under the back propagation through time algorithm, the network processes pattern sequences through a
series of defined activations. By applying an input pattern of zero, all the activities within the model can be set
to zero from where processing begins.
The Levenberg-Marquardt algorithm
This algorithm is directly derived from numeric algebra. The main activity here is to solve the equation
below.
(J t J + ƛI)Ǭ = J t E
J stands for the Jacobian matrix calculated using the formula below

It is an N by W matrix where N is the total number of inputs to the training and W the parameters of
the training (weights). The chain rule of calculus can be very effective in calculating the Jacobian.
The J t J value is called the Hessian and can be accurately calculated if the errors within the function
are minimized. ƛ is the damping factor in the equation and starts at a minimal value, as low as 0.1. After arriving
at the solution to the equation, the Ǭ value is added back to the weights to update them. The sum of squared
errors is also calculated and added back to ƛ.
The algorithm is basically an iteration in which the value of ƛ is continually updated until the sum of
squares of errors are minimal. The value of the initial network weights has a large impact on the working of this
algorithm.
Though the calculation of the Jacobian matrix is a major part of this implementation, there is also the
question of organizing the iterative training process. The algorithm works under the assumption that if the error
is lower than the preceding one, then the quadratic approximation function is doing its work well. If it goes
higher, this means that there is need for examination of the gradient of curvature and finding a new combination
coefficient. The figure below summarizes the training process of this algorithm.

www.irjes.com

13 | Page
A study of neural network algorithms
This algorithm is efficient in solving the problems associated with methods such as the Gauss-Newton
and the gradient descent methods. It is therefore one of the most efficient training algorithms today.

IV.

THE GENETIC ALGORITHM APPLIED TO THE HOPFIELD NETWORK

The Hopfield network is another neural network that has been developed. This network is made of a set
of two neurons that have been fully connected. The two neurons have either an on or off status giving them their
characteristic two state binary nature. The neurons take input and the total value of their inputs determines the
state of the neuron. This network cannot be trained using all the training algorithms available since tests have
shown that it can only be trained using six of the available patterns.
The speed of training the Hopfield network is one epoch. This is enough to train the entire network in
two iterations. The size of the network is 14520 units. the Hopfield network uses a basic model in which all the
neurons have been connected together. The weights on the connections between neurons are systematically
arranged using an organized matrix of wij. The learning process of this network begins by setting the nodes to
some known value (Karayiannis et al 1993). Several iterations are then performed through either asynchronous
or synchronous update methods. This continues for a while and then stops at which point the neurons are read
and the network formed interpreted. The model works on the assumption that networks are stored in the weight
matrices.
The input to the algorithm should contain an embedded pattern. Using a mechanism of autoassociation, the network can divide the patterns stored in the network into two parts; a cue and the association.
To retrieve the network from the matrix, the user simply enters the cue. The model offers two options for a
weight matrix, being +1 or -1. For a value of 1, it could have the following two matrices (1, 1) or (-1, -1). Both
of these are stable states. For a value of -1, the matrices are either (1, -1) or (-1, 1). The states are updated
synchronously and therefore may change accordingly.
This model is heavily dependent on the values of its weight matrix since this is where the patterns are
derived from. Therefore, understanding this model begins by first understanding the mechanism of setting the
weight matrices. If the weight between two neurons has a positive value, they will exhibit the tendency to drag
each other in the same direction and vice versa (Patrick 2008).
The Hopfield network is based on the recall mechanism of the human brain. This is called content
addressable memory. The input values to the model contain an embedded pattern that is then interpreted by the
model’s mechanisms. In the event that some of the neurons are destroyed, the network’s performance degrades.
However, this does not mean that it loses all its functionality. Just like in the human brain where brain damage
does not mean the total loss of all functionality, some of the network’s functionality still remains even with
severe network damage (Alexander et al 2011).

V.

CONCLUSION

In conclusion it can be said that back propogation algorithm is efficiently effective in pattern
recognition where as the levenberg and Marquart are used for guassian newton and gradient metods. Where as
Hopfield network is an emulation of working of neuron used in recalling process in brain, but all the algorithm
have been successful in proving the fact of learning. Which is done by all the networks discussed.

WORKS CITED
[1].

[2].
[3].
[4].
[5].
[6].
[7].

Alexander g, erik, ivan, róbert s, martina v. Comparison of neural networks learning algorithms for
simulation of rectilinear snake locomotion. Modelling of mechanical and
mechatronic systems,
2011.
Amir A S, Mohammad B T, and Abbas H. Modified Levenberg-Marquardt Method for Neural
Networks Training. World Academy of Science, Engineering and Technology 6,
2007.
Haykin, Simon S. Neural Networks: A Comprehensive Foundation. New York: Macmillan, 1994.
Print.
Karayiannis, N B, and A N. Venetsanopoulos. Artificial Neural Networks: Learning Algorithms,
Performance Evaluation, and Applications. Boston: Kluwer Academic, 1993. Print.
MacKay, David J. C. Information Theory, Inference, and Learning Algorithms. Cambridge, UK:
Cambridge University Press, 2003. Print.
Mandic, Danilo P, and Jonathon A. Chambers. Recurrent Neural Networks for Prediction: Learning
Algorithms, Architectures, and Stability. Chichester: John Wiley, 2001.
P. Patrick van &r Smagt. A comparative study of neural network algorithms applied to optical
character recognition, 2008.

www.irjes.com

14 | Page

More Related Content

What's hot

Adaptive Resonance Theory
Adaptive Resonance TheoryAdaptive Resonance Theory
Adaptive Resonance Theorysurat murthy
 
ARTIFICIAL NEURAL NETWORK APPROACH TO MODELING OF POLYPROPYLENE REACTOR
ARTIFICIAL NEURAL NETWORK APPROACH TO MODELING OF POLYPROPYLENE REACTORARTIFICIAL NEURAL NETWORK APPROACH TO MODELING OF POLYPROPYLENE REACTOR
ARTIFICIAL NEURAL NETWORK APPROACH TO MODELING OF POLYPROPYLENE REACTORijac123
 
Artificial neural networks in hydrology
Artificial neural networks in hydrology Artificial neural networks in hydrology
Artificial neural networks in hydrology Jonathan D'Cruz
 
Artificial Neural Network report
Artificial Neural Network reportArtificial Neural Network report
Artificial Neural Network reportAnjali Agrawal
 
artificial neural network
artificial neural networkartificial neural network
artificial neural networkPallavi Yadav
 
Neural network
Neural network Neural network
Neural network Faireen
 
Forecasting of Sales using Neural network techniques
Forecasting of Sales using Neural network techniquesForecasting of Sales using Neural network techniques
Forecasting of Sales using Neural network techniquesHitesh Dua
 
Power system transient stability margin estimation using artificial neural ne...
Power system transient stability margin estimation using artificial neural ne...Power system transient stability margin estimation using artificial neural ne...
Power system transient stability margin estimation using artificial neural ne...elelijjournal
 
ARTIFICIAL NEURAL NETWORKS
ARTIFICIAL NEURAL NETWORKSARTIFICIAL NEURAL NETWORKS
ARTIFICIAL NEURAL NETWORKSAIMS Education
 
NEURAL Network Design Training
NEURAL Network Design  TrainingNEURAL Network Design  Training
NEURAL Network Design TrainingESCOM
 
Survey on Artificial Neural Network Learning Technique Algorithms
Survey on Artificial Neural Network Learning Technique AlgorithmsSurvey on Artificial Neural Network Learning Technique Algorithms
Survey on Artificial Neural Network Learning Technique AlgorithmsIRJET Journal
 
Neural Network Implementation Control Mobile Robot
Neural Network Implementation Control Mobile RobotNeural Network Implementation Control Mobile Robot
Neural Network Implementation Control Mobile RobotIRJET Journal
 
Neural Network Classification and its Applications in Insurance Industry
Neural Network Classification and its Applications in Insurance IndustryNeural Network Classification and its Applications in Insurance Industry
Neural Network Classification and its Applications in Insurance IndustryInderjeet Singh
 
Levenberg marquardt-algorithm-for-karachi-stock-exchange-share-rates-forecast...
Levenberg marquardt-algorithm-for-karachi-stock-exchange-share-rates-forecast...Levenberg marquardt-algorithm-for-karachi-stock-exchange-share-rates-forecast...
Levenberg marquardt-algorithm-for-karachi-stock-exchange-share-rates-forecast...Cemal Ardil
 
Artificial neural network
Artificial neural networkArtificial neural network
Artificial neural networknainabhatt2
 

What's hot (20)

Adaptive Resonance Theory
Adaptive Resonance TheoryAdaptive Resonance Theory
Adaptive Resonance Theory
 
ARTIFICIAL NEURAL NETWORK APPROACH TO MODELING OF POLYPROPYLENE REACTOR
ARTIFICIAL NEURAL NETWORK APPROACH TO MODELING OF POLYPROPYLENE REACTORARTIFICIAL NEURAL NETWORK APPROACH TO MODELING OF POLYPROPYLENE REACTOR
ARTIFICIAL NEURAL NETWORK APPROACH TO MODELING OF POLYPROPYLENE REACTOR
 
Artificial neural networks in hydrology
Artificial neural networks in hydrology Artificial neural networks in hydrology
Artificial neural networks in hydrology
 
Artificial Neural Network report
Artificial Neural Network reportArtificial Neural Network report
Artificial Neural Network report
 
artificial neural network
artificial neural networkartificial neural network
artificial neural network
 
Neural network
Neural network Neural network
Neural network
 
AI IEEE
AI IEEEAI IEEE
AI IEEE
 
Neural network
Neural networkNeural network
Neural network
 
Forecasting of Sales using Neural network techniques
Forecasting of Sales using Neural network techniquesForecasting of Sales using Neural network techniques
Forecasting of Sales using Neural network techniques
 
Power system transient stability margin estimation using artificial neural ne...
Power system transient stability margin estimation using artificial neural ne...Power system transient stability margin estimation using artificial neural ne...
Power system transient stability margin estimation using artificial neural ne...
 
Complex system
Complex systemComplex system
Complex system
 
ARTIFICIAL NEURAL NETWORKS
ARTIFICIAL NEURAL NETWORKSARTIFICIAL NEURAL NETWORKS
ARTIFICIAL NEURAL NETWORKS
 
NEURAL Network Design Training
NEURAL Network Design  TrainingNEURAL Network Design  Training
NEURAL Network Design Training
 
Survey on Artificial Neural Network Learning Technique Algorithms
Survey on Artificial Neural Network Learning Technique AlgorithmsSurvey on Artificial Neural Network Learning Technique Algorithms
Survey on Artificial Neural Network Learning Technique Algorithms
 
SoftComputing6
SoftComputing6SoftComputing6
SoftComputing6
 
Neural Network Implementation Control Mobile Robot
Neural Network Implementation Control Mobile RobotNeural Network Implementation Control Mobile Robot
Neural Network Implementation Control Mobile Robot
 
Neural Network Classification and its Applications in Insurance Industry
Neural Network Classification and its Applications in Insurance IndustryNeural Network Classification and its Applications in Insurance Industry
Neural Network Classification and its Applications in Insurance Industry
 
Levenberg marquardt-algorithm-for-karachi-stock-exchange-share-rates-forecast...
Levenberg marquardt-algorithm-for-karachi-stock-exchange-share-rates-forecast...Levenberg marquardt-algorithm-for-karachi-stock-exchange-share-rates-forecast...
Levenberg marquardt-algorithm-for-karachi-stock-exchange-share-rates-forecast...
 
Artificial neural network
Artificial neural networkArtificial neural network
Artificial neural network
 
01 Introduction to Machine Learning
01 Introduction to Machine Learning01 Introduction to Machine Learning
01 Introduction to Machine Learning
 

Viewers also liked

International Refereed Journal of Engineering and Science (IRJES)
International Refereed Journal of Engineering and Science (IRJES)International Refereed Journal of Engineering and Science (IRJES)
International Refereed Journal of Engineering and Science (IRJES)irjes
 
Numerical Analysis of Magnetic Compounds used to Make Induction Planar Actuat...
Numerical Analysis of Magnetic Compounds used to Make Induction Planar Actuat...Numerical Analysis of Magnetic Compounds used to Make Induction Planar Actuat...
Numerical Analysis of Magnetic Compounds used to Make Induction Planar Actuat...irjes
 
International Refereed Journal of Engineering and Science (IRJES)
International Refereed Journal of Engineering and Science (IRJES)International Refereed Journal of Engineering and Science (IRJES)
International Refereed Journal of Engineering and Science (IRJES)irjes
 
International Refereed Journal of Engineering and Science (IRJES)
International Refereed Journal of Engineering and Science (IRJES)International Refereed Journal of Engineering and Science (IRJES)
International Refereed Journal of Engineering and Science (IRJES)irjes
 
G224553
G224553G224553
G224553irjes
 
International Refereed Journal of Engineering and Science (IRJES)
International Refereed Journal of Engineering and Science (IRJES)International Refereed Journal of Engineering and Science (IRJES)
International Refereed Journal of Engineering and Science (IRJES)irjes
 
H245563
H245563H245563
H245563irjes
 
International Refereed Journal of Engineering and Science (IRJES)
International Refereed Journal of Engineering and Science (IRJES)International Refereed Journal of Engineering and Science (IRJES)
International Refereed Journal of Engineering and Science (IRJES)irjes
 
International Refereed Journal of Engineering and Science (IRJES)
International Refereed Journal of Engineering and Science (IRJES)International Refereed Journal of Engineering and Science (IRJES)
International Refereed Journal of Engineering and Science (IRJES)irjes
 
Frontline managent certIV certificate
Frontline managent certIV certificateFrontline managent certIV certificate
Frontline managent certIV certificateBryan Buckley
 
Artículo corregido
Artículo corregidoArtículo corregido
Artículo corregidoalba248
 
Mis apply in an organization by dipu
Mis apply in an organization by dipuMis apply in an organization by dipu
Mis apply in an organization by dipuShahadat Hossain
 
Africa RISING ESA Project: Monitoring and information management
Africa RISING ESA Project: Monitoring and information managementAfrica RISING ESA Project: Monitoring and information management
Africa RISING ESA Project: Monitoring and information managementafrica-rising
 
International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)IJERD Editor
 
La otra cara de internet
La otra cara de internetLa otra cara de internet
La otra cara de internetDaniArias9
 
American Family Farmers Feed 155 People Each- 2% Americans Farm
American Family Farmers Feed 155 People Each- 2% Americans FarmAmerican Family Farmers Feed 155 People Each- 2% Americans Farm
American Family Farmers Feed 155 People Each- 2% Americans Farmleslie2mcbride85
 

Viewers also liked (19)

International Refereed Journal of Engineering and Science (IRJES)
International Refereed Journal of Engineering and Science (IRJES)International Refereed Journal of Engineering and Science (IRJES)
International Refereed Journal of Engineering and Science (IRJES)
 
Numerical Analysis of Magnetic Compounds used to Make Induction Planar Actuat...
Numerical Analysis of Magnetic Compounds used to Make Induction Planar Actuat...Numerical Analysis of Magnetic Compounds used to Make Induction Planar Actuat...
Numerical Analysis of Magnetic Compounds used to Make Induction Planar Actuat...
 
International Refereed Journal of Engineering and Science (IRJES)
International Refereed Journal of Engineering and Science (IRJES)International Refereed Journal of Engineering and Science (IRJES)
International Refereed Journal of Engineering and Science (IRJES)
 
International Refereed Journal of Engineering and Science (IRJES)
International Refereed Journal of Engineering and Science (IRJES)International Refereed Journal of Engineering and Science (IRJES)
International Refereed Journal of Engineering and Science (IRJES)
 
G224553
G224553G224553
G224553
 
International Refereed Journal of Engineering and Science (IRJES)
International Refereed Journal of Engineering and Science (IRJES)International Refereed Journal of Engineering and Science (IRJES)
International Refereed Journal of Engineering and Science (IRJES)
 
H245563
H245563H245563
H245563
 
International Refereed Journal of Engineering and Science (IRJES)
International Refereed Journal of Engineering and Science (IRJES)International Refereed Journal of Engineering and Science (IRJES)
International Refereed Journal of Engineering and Science (IRJES)
 
International Refereed Journal of Engineering and Science (IRJES)
International Refereed Journal of Engineering and Science (IRJES)International Refereed Journal of Engineering and Science (IRJES)
International Refereed Journal of Engineering and Science (IRJES)
 
CURRICULUM VITAE
CURRICULUM VITAECURRICULUM VITAE
CURRICULUM VITAE
 
Frontline managent certIV certificate
Frontline managent certIV certificateFrontline managent certIV certificate
Frontline managent certIV certificate
 
Artículo corregido
Artículo corregidoArtículo corregido
Artículo corregido
 
Punto 8. ISO 9000
Punto 8.  ISO 9000Punto 8.  ISO 9000
Punto 8. ISO 9000
 
Mis apply in an organization by dipu
Mis apply in an organization by dipuMis apply in an organization by dipu
Mis apply in an organization by dipu
 
Africa RISING ESA Project: Monitoring and information management
Africa RISING ESA Project: Monitoring and information managementAfrica RISING ESA Project: Monitoring and information management
Africa RISING ESA Project: Monitoring and information management
 
International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)
 
La otra cara de internet
La otra cara de internetLa otra cara de internet
La otra cara de internet
 
American Family Farmers Feed 155 People Each- 2% Americans Farm
American Family Farmers Feed 155 People Each- 2% Americans FarmAmerican Family Farmers Feed 155 People Each- 2% Americans Farm
American Family Farmers Feed 155 People Each- 2% Americans Farm
 
Resume
ResumeResume
Resume
 

Similar to International Refereed Journal of Engineering and Science (IRJES)

Introduction Of Artificial neural network
Introduction Of Artificial neural networkIntroduction Of Artificial neural network
Introduction Of Artificial neural networkNagarajan
 
Comparison of Neural Network Training Functions for Hematoma Classification i...
Comparison of Neural Network Training Functions for Hematoma Classification i...Comparison of Neural Network Training Functions for Hematoma Classification i...
Comparison of Neural Network Training Functions for Hematoma Classification i...IOSR Journals
 
Neural network based numerical digits recognization using nnt in matlab
Neural network based numerical digits recognization using nnt in matlabNeural network based numerical digits recognization using nnt in matlab
Neural network based numerical digits recognization using nnt in matlabijcses
 
Data Science - Part VIII - Artifical Neural Network
Data Science - Part VIII -  Artifical Neural NetworkData Science - Part VIII -  Artifical Neural Network
Data Science - Part VIII - Artifical Neural NetworkDerek Kane
 
Artificial neural networks seminar presentation using MSWord.
Artificial neural networks seminar presentation using MSWord.Artificial neural networks seminar presentation using MSWord.
Artificial neural networks seminar presentation using MSWord.Mohd Faiz
 
Web spam classification using supervised artificial neural network algorithms
Web spam classification using supervised artificial neural network algorithmsWeb spam classification using supervised artificial neural network algorithms
Web spam classification using supervised artificial neural network algorithmsaciijournal
 
Implementation Of Back-Propagation Neural Network For Isolated Bangla Speech ...
Implementation Of Back-Propagation Neural Network For Isolated Bangla Speech ...Implementation Of Back-Propagation Neural Network For Isolated Bangla Speech ...
Implementation Of Back-Propagation Neural Network For Isolated Bangla Speech ...ijistjournal
 
Implementation Of Back-Propagation Neural Network For Isolated Bangla Speech ...
Implementation Of Back-Propagation Neural Network For Isolated Bangla Speech ...Implementation Of Back-Propagation Neural Network For Isolated Bangla Speech ...
Implementation Of Back-Propagation Neural Network For Isolated Bangla Speech ...ijistjournal
 
Evolving Connection Weights for Pattern Storage and Recall in Hopfield Model ...
Evolving Connection Weights for Pattern Storage and Recall in Hopfield Model ...Evolving Connection Weights for Pattern Storage and Recall in Hopfield Model ...
Evolving Connection Weights for Pattern Storage and Recall in Hopfield Model ...ijsc
 
2. NEURAL NETWORKS USING GENETIC ALGORITHMS.pptx
2. NEURAL NETWORKS USING GENETIC ALGORITHMS.pptx2. NEURAL NETWORKS USING GENETIC ALGORITHMS.pptx
2. NEURAL NETWORKS USING GENETIC ALGORITHMS.pptxssuser67281d
 
Modeling of neural image compression using gradient decent technology
Modeling of neural image compression using gradient decent technologyModeling of neural image compression using gradient decent technology
Modeling of neural image compression using gradient decent technologytheijes
 
EVOLVING CONNECTION WEIGHTS FOR PATTERN STORAGE AND RECALL IN HOPFIELD MODEL ...
EVOLVING CONNECTION WEIGHTS FOR PATTERN STORAGE AND RECALL IN HOPFIELD MODEL ...EVOLVING CONNECTION WEIGHTS FOR PATTERN STORAGE AND RECALL IN HOPFIELD MODEL ...
EVOLVING CONNECTION WEIGHTS FOR PATTERN STORAGE AND RECALL IN HOPFIELD MODEL ...ijsc
 
Classification by back propagation, multi layered feed forward neural network...
Classification by back propagation, multi layered feed forward neural network...Classification by back propagation, multi layered feed forward neural network...
Classification by back propagation, multi layered feed forward neural network...bihira aggrey
 
Evolutionary Algorithm for Optimal Connection Weights in Artificial Neural Ne...
Evolutionary Algorithm for Optimal Connection Weights in Artificial Neural Ne...Evolutionary Algorithm for Optimal Connection Weights in Artificial Neural Ne...
Evolutionary Algorithm for Optimal Connection Weights in Artificial Neural Ne...CSCJournals
 
Neural network final NWU 4.3 Graphics Course
Neural network final NWU 4.3 Graphics CourseNeural network final NWU 4.3 Graphics Course
Neural network final NWU 4.3 Graphics CourseMohaiminur Rahman
 
Theories of error back propagation in the brain review
Theories of error back propagation in the brain reviewTheories of error back propagation in the brain review
Theories of error back propagation in the brain reviewSeonghyun Kim
 
Deep learning MindMap
Deep learning MindMapDeep learning MindMap
Deep learning MindMapAshish Patel
 

Similar to International Refereed Journal of Engineering and Science (IRJES) (20)

Introduction Of Artificial neural network
Introduction Of Artificial neural networkIntroduction Of Artificial neural network
Introduction Of Artificial neural network
 
Comparison of Neural Network Training Functions for Hematoma Classification i...
Comparison of Neural Network Training Functions for Hematoma Classification i...Comparison of Neural Network Training Functions for Hematoma Classification i...
Comparison of Neural Network Training Functions for Hematoma Classification i...
 
Neural network based numerical digits recognization using nnt in matlab
Neural network based numerical digits recognization using nnt in matlabNeural network based numerical digits recognization using nnt in matlab
Neural network based numerical digits recognization using nnt in matlab
 
Data Science - Part VIII - Artifical Neural Network
Data Science - Part VIII -  Artifical Neural NetworkData Science - Part VIII -  Artifical Neural Network
Data Science - Part VIII - Artifical Neural Network
 
Artificial neural networks seminar presentation using MSWord.
Artificial neural networks seminar presentation using MSWord.Artificial neural networks seminar presentation using MSWord.
Artificial neural networks seminar presentation using MSWord.
 
F017533540
F017533540F017533540
F017533540
 
Web spam classification using supervised artificial neural network algorithms
Web spam classification using supervised artificial neural network algorithmsWeb spam classification using supervised artificial neural network algorithms
Web spam classification using supervised artificial neural network algorithms
 
Implementation Of Back-Propagation Neural Network For Isolated Bangla Speech ...
Implementation Of Back-Propagation Neural Network For Isolated Bangla Speech ...Implementation Of Back-Propagation Neural Network For Isolated Bangla Speech ...
Implementation Of Back-Propagation Neural Network For Isolated Bangla Speech ...
 
Implementation Of Back-Propagation Neural Network For Isolated Bangla Speech ...
Implementation Of Back-Propagation Neural Network For Isolated Bangla Speech ...Implementation Of Back-Propagation Neural Network For Isolated Bangla Speech ...
Implementation Of Back-Propagation Neural Network For Isolated Bangla Speech ...
 
Evolving Connection Weights for Pattern Storage and Recall in Hopfield Model ...
Evolving Connection Weights for Pattern Storage and Recall in Hopfield Model ...Evolving Connection Weights for Pattern Storage and Recall in Hopfield Model ...
Evolving Connection Weights for Pattern Storage and Recall in Hopfield Model ...
 
2. NEURAL NETWORKS USING GENETIC ALGORITHMS.pptx
2. NEURAL NETWORKS USING GENETIC ALGORITHMS.pptx2. NEURAL NETWORKS USING GENETIC ALGORITHMS.pptx
2. NEURAL NETWORKS USING GENETIC ALGORITHMS.pptx
 
Modeling of neural image compression using gradient decent technology
Modeling of neural image compression using gradient decent technologyModeling of neural image compression using gradient decent technology
Modeling of neural image compression using gradient decent technology
 
N ns 1
N ns 1N ns 1
N ns 1
 
EVOLVING CONNECTION WEIGHTS FOR PATTERN STORAGE AND RECALL IN HOPFIELD MODEL ...
EVOLVING CONNECTION WEIGHTS FOR PATTERN STORAGE AND RECALL IN HOPFIELD MODEL ...EVOLVING CONNECTION WEIGHTS FOR PATTERN STORAGE AND RECALL IN HOPFIELD MODEL ...
EVOLVING CONNECTION WEIGHTS FOR PATTERN STORAGE AND RECALL IN HOPFIELD MODEL ...
 
Classification by back propagation, multi layered feed forward neural network...
Classification by back propagation, multi layered feed forward neural network...Classification by back propagation, multi layered feed forward neural network...
Classification by back propagation, multi layered feed forward neural network...
 
Evolutionary Algorithm for Optimal Connection Weights in Artificial Neural Ne...
Evolutionary Algorithm for Optimal Connection Weights in Artificial Neural Ne...Evolutionary Algorithm for Optimal Connection Weights in Artificial Neural Ne...
Evolutionary Algorithm for Optimal Connection Weights in Artificial Neural Ne...
 
Neural network final NWU 4.3 Graphics Course
Neural network final NWU 4.3 Graphics CourseNeural network final NWU 4.3 Graphics Course
Neural network final NWU 4.3 Graphics Course
 
D028018022
D028018022D028018022
D028018022
 
Theories of error back propagation in the brain review
Theories of error back propagation in the brain reviewTheories of error back propagation in the brain review
Theories of error back propagation in the brain review
 
Deep learning MindMap
Deep learning MindMapDeep learning MindMap
Deep learning MindMap
 

More from irjes

Automatic Safety Door Lock System for Car
Automatic Safety Door Lock System for CarAutomatic Safety Door Lock System for Car
Automatic Safety Door Lock System for Carirjes
 
Squared Multi-hole Extrusion Process: Experimentation & Optimization
Squared Multi-hole Extrusion Process: Experimentation & OptimizationSquared Multi-hole Extrusion Process: Experimentation & Optimization
Squared Multi-hole Extrusion Process: Experimentation & Optimizationirjes
 
Analysis of Agile and Multi-Agent Based Process Scheduling Model
Analysis of Agile and Multi-Agent Based Process Scheduling ModelAnalysis of Agile and Multi-Agent Based Process Scheduling Model
Analysis of Agile and Multi-Agent Based Process Scheduling Modelirjes
 
Effects of Cutting Tool Parameters on Surface Roughness
Effects of Cutting Tool Parameters on Surface RoughnessEffects of Cutting Tool Parameters on Surface Roughness
Effects of Cutting Tool Parameters on Surface Roughnessirjes
 
Possible limits of accuracy in measurement of fundamental physical constants
Possible limits of accuracy in measurement of fundamental physical constantsPossible limits of accuracy in measurement of fundamental physical constants
Possible limits of accuracy in measurement of fundamental physical constantsirjes
 
Performance Comparison of Energy Detection Based Spectrum Sensing for Cogniti...
Performance Comparison of Energy Detection Based Spectrum Sensing for Cogniti...Performance Comparison of Energy Detection Based Spectrum Sensing for Cogniti...
Performance Comparison of Energy Detection Based Spectrum Sensing for Cogniti...irjes
 
Comparative Study of Pre-Engineered and Conventional Steel Frames for Differe...
Comparative Study of Pre-Engineered and Conventional Steel Frames for Differe...Comparative Study of Pre-Engineered and Conventional Steel Frames for Differe...
Comparative Study of Pre-Engineered and Conventional Steel Frames for Differe...irjes
 
Flip bifurcation and chaos control in discrete-time Prey-predator model
Flip bifurcation and chaos control in discrete-time Prey-predator model Flip bifurcation and chaos control in discrete-time Prey-predator model
Flip bifurcation and chaos control in discrete-time Prey-predator model irjes
 
Energy Awareness and the Role of “Critical Mass” In Smart Cities
Energy Awareness and the Role of “Critical Mass” In Smart CitiesEnergy Awareness and the Role of “Critical Mass” In Smart Cities
Energy Awareness and the Role of “Critical Mass” In Smart Citiesirjes
 
A Firefly Algorithm for Optimizing Spur Gear Parameters Under Non-Lubricated ...
A Firefly Algorithm for Optimizing Spur Gear Parameters Under Non-Lubricated ...A Firefly Algorithm for Optimizing Spur Gear Parameters Under Non-Lubricated ...
A Firefly Algorithm for Optimizing Spur Gear Parameters Under Non-Lubricated ...irjes
 
The Effect of Orientation of Vortex Generators on Aerodynamic Drag Reduction ...
The Effect of Orientation of Vortex Generators on Aerodynamic Drag Reduction ...The Effect of Orientation of Vortex Generators on Aerodynamic Drag Reduction ...
The Effect of Orientation of Vortex Generators on Aerodynamic Drag Reduction ...irjes
 
An Assessment of The Relationship Between The Availability of Financial Resou...
An Assessment of The Relationship Between The Availability of Financial Resou...An Assessment of The Relationship Between The Availability of Financial Resou...
An Assessment of The Relationship Between The Availability of Financial Resou...irjes
 
The Choice of Antenatal Care and Delivery Place in Surabaya (Based on Prefere...
The Choice of Antenatal Care and Delivery Place in Surabaya (Based on Prefere...The Choice of Antenatal Care and Delivery Place in Surabaya (Based on Prefere...
The Choice of Antenatal Care and Delivery Place in Surabaya (Based on Prefere...irjes
 
Prediction of the daily global solar irradiance received on a horizontal surf...
Prediction of the daily global solar irradiance received on a horizontal surf...Prediction of the daily global solar irradiance received on a horizontal surf...
Prediction of the daily global solar irradiance received on a horizontal surf...irjes
 
HARMONIC ANALYSIS ASSOCIATED WITH A GENERALIZED BESSEL-STRUVE OPERATOR ON THE...
HARMONIC ANALYSIS ASSOCIATED WITH A GENERALIZED BESSEL-STRUVE OPERATOR ON THE...HARMONIC ANALYSIS ASSOCIATED WITH A GENERALIZED BESSEL-STRUVE OPERATOR ON THE...
HARMONIC ANALYSIS ASSOCIATED WITH A GENERALIZED BESSEL-STRUVE OPERATOR ON THE...irjes
 
The Role of Community Participation in Planning Processes of Emerging Urban C...
The Role of Community Participation in Planning Processes of Emerging Urban C...The Role of Community Participation in Planning Processes of Emerging Urban C...
The Role of Community Participation in Planning Processes of Emerging Urban C...irjes
 
Understanding the Concept of Strategic Intent
Understanding the Concept of Strategic IntentUnderstanding the Concept of Strategic Intent
Understanding the Concept of Strategic Intentirjes
 
The (R, Q) Control of A Mixture Inventory Model with Backorders and Lost Sale...
The (R, Q) Control of A Mixture Inventory Model with Backorders and Lost Sale...The (R, Q) Control of A Mixture Inventory Model with Backorders and Lost Sale...
The (R, Q) Control of A Mixture Inventory Model with Backorders and Lost Sale...irjes
 
Relation Between Stress And Menstrual Cycle At 18-21 Years Of Age
Relation Between Stress And Menstrual Cycle At 18-21 Years Of AgeRelation Between Stress And Menstrual Cycle At 18-21 Years Of Age
Relation Between Stress And Menstrual Cycle At 18-21 Years Of Ageirjes
 
Wave Transmission on Submerged Breakwater with Interlocking D-Block Armor
Wave Transmission on Submerged Breakwater with Interlocking D-Block ArmorWave Transmission on Submerged Breakwater with Interlocking D-Block Armor
Wave Transmission on Submerged Breakwater with Interlocking D-Block Armorirjes
 

More from irjes (20)

Automatic Safety Door Lock System for Car
Automatic Safety Door Lock System for CarAutomatic Safety Door Lock System for Car
Automatic Safety Door Lock System for Car
 
Squared Multi-hole Extrusion Process: Experimentation & Optimization
Squared Multi-hole Extrusion Process: Experimentation & OptimizationSquared Multi-hole Extrusion Process: Experimentation & Optimization
Squared Multi-hole Extrusion Process: Experimentation & Optimization
 
Analysis of Agile and Multi-Agent Based Process Scheduling Model
Analysis of Agile and Multi-Agent Based Process Scheduling ModelAnalysis of Agile and Multi-Agent Based Process Scheduling Model
Analysis of Agile and Multi-Agent Based Process Scheduling Model
 
Effects of Cutting Tool Parameters on Surface Roughness
Effects of Cutting Tool Parameters on Surface RoughnessEffects of Cutting Tool Parameters on Surface Roughness
Effects of Cutting Tool Parameters on Surface Roughness
 
Possible limits of accuracy in measurement of fundamental physical constants
Possible limits of accuracy in measurement of fundamental physical constantsPossible limits of accuracy in measurement of fundamental physical constants
Possible limits of accuracy in measurement of fundamental physical constants
 
Performance Comparison of Energy Detection Based Spectrum Sensing for Cogniti...
Performance Comparison of Energy Detection Based Spectrum Sensing for Cogniti...Performance Comparison of Energy Detection Based Spectrum Sensing for Cogniti...
Performance Comparison of Energy Detection Based Spectrum Sensing for Cogniti...
 
Comparative Study of Pre-Engineered and Conventional Steel Frames for Differe...
Comparative Study of Pre-Engineered and Conventional Steel Frames for Differe...Comparative Study of Pre-Engineered and Conventional Steel Frames for Differe...
Comparative Study of Pre-Engineered and Conventional Steel Frames for Differe...
 
Flip bifurcation and chaos control in discrete-time Prey-predator model
Flip bifurcation and chaos control in discrete-time Prey-predator model Flip bifurcation and chaos control in discrete-time Prey-predator model
Flip bifurcation and chaos control in discrete-time Prey-predator model
 
Energy Awareness and the Role of “Critical Mass” In Smart Cities
Energy Awareness and the Role of “Critical Mass” In Smart CitiesEnergy Awareness and the Role of “Critical Mass” In Smart Cities
Energy Awareness and the Role of “Critical Mass” In Smart Cities
 
A Firefly Algorithm for Optimizing Spur Gear Parameters Under Non-Lubricated ...
A Firefly Algorithm for Optimizing Spur Gear Parameters Under Non-Lubricated ...A Firefly Algorithm for Optimizing Spur Gear Parameters Under Non-Lubricated ...
A Firefly Algorithm for Optimizing Spur Gear Parameters Under Non-Lubricated ...
 
The Effect of Orientation of Vortex Generators on Aerodynamic Drag Reduction ...
The Effect of Orientation of Vortex Generators on Aerodynamic Drag Reduction ...The Effect of Orientation of Vortex Generators on Aerodynamic Drag Reduction ...
The Effect of Orientation of Vortex Generators on Aerodynamic Drag Reduction ...
 
An Assessment of The Relationship Between The Availability of Financial Resou...
An Assessment of The Relationship Between The Availability of Financial Resou...An Assessment of The Relationship Between The Availability of Financial Resou...
An Assessment of The Relationship Between The Availability of Financial Resou...
 
The Choice of Antenatal Care and Delivery Place in Surabaya (Based on Prefere...
The Choice of Antenatal Care and Delivery Place in Surabaya (Based on Prefere...The Choice of Antenatal Care and Delivery Place in Surabaya (Based on Prefere...
The Choice of Antenatal Care and Delivery Place in Surabaya (Based on Prefere...
 
Prediction of the daily global solar irradiance received on a horizontal surf...
Prediction of the daily global solar irradiance received on a horizontal surf...Prediction of the daily global solar irradiance received on a horizontal surf...
Prediction of the daily global solar irradiance received on a horizontal surf...
 
HARMONIC ANALYSIS ASSOCIATED WITH A GENERALIZED BESSEL-STRUVE OPERATOR ON THE...
HARMONIC ANALYSIS ASSOCIATED WITH A GENERALIZED BESSEL-STRUVE OPERATOR ON THE...HARMONIC ANALYSIS ASSOCIATED WITH A GENERALIZED BESSEL-STRUVE OPERATOR ON THE...
HARMONIC ANALYSIS ASSOCIATED WITH A GENERALIZED BESSEL-STRUVE OPERATOR ON THE...
 
The Role of Community Participation in Planning Processes of Emerging Urban C...
The Role of Community Participation in Planning Processes of Emerging Urban C...The Role of Community Participation in Planning Processes of Emerging Urban C...
The Role of Community Participation in Planning Processes of Emerging Urban C...
 
Understanding the Concept of Strategic Intent
Understanding the Concept of Strategic IntentUnderstanding the Concept of Strategic Intent
Understanding the Concept of Strategic Intent
 
The (R, Q) Control of A Mixture Inventory Model with Backorders and Lost Sale...
The (R, Q) Control of A Mixture Inventory Model with Backorders and Lost Sale...The (R, Q) Control of A Mixture Inventory Model with Backorders and Lost Sale...
The (R, Q) Control of A Mixture Inventory Model with Backorders and Lost Sale...
 
Relation Between Stress And Menstrual Cycle At 18-21 Years Of Age
Relation Between Stress And Menstrual Cycle At 18-21 Years Of AgeRelation Between Stress And Menstrual Cycle At 18-21 Years Of Age
Relation Between Stress And Menstrual Cycle At 18-21 Years Of Age
 
Wave Transmission on Submerged Breakwater with Interlocking D-Block Armor
Wave Transmission on Submerged Breakwater with Interlocking D-Block ArmorWave Transmission on Submerged Breakwater with Interlocking D-Block Armor
Wave Transmission on Submerged Breakwater with Interlocking D-Block Armor
 

Recently uploaded

Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 3652toLead Limited
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...shyamraj55
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
Bluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdfBluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdfngoud9212
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsMemoori
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Enterprise Knowledge
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
costume and set research powerpoint presentation
costume and set research powerpoint presentationcostume and set research powerpoint presentation
costume and set research powerpoint presentationphoebematthew05
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...Fwdays
 
Unlocking the Potential of the Cloud for IBM Power Systems
Unlocking the Potential of the Cloud for IBM Power SystemsUnlocking the Potential of the Cloud for IBM Power Systems
Unlocking the Potential of the Cloud for IBM Power SystemsPrecisely
 
APIForce Zurich 5 April Automation LPDG
APIForce Zurich 5 April  Automation LPDGAPIForce Zurich 5 April  Automation LPDG
APIForce Zurich 5 April Automation LPDGMarianaLemus7
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Alan Dix
 
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024BookNet Canada
 
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024BookNet Canada
 
Artificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning eraArtificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning eraDeakin University
 

Recently uploaded (20)

Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
 
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptxE-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping Elbows
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
Bluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdfBluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdf
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial Buildings
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
costume and set research powerpoint presentation
costume and set research powerpoint presentationcostume and set research powerpoint presentation
costume and set research powerpoint presentation
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
 
Unlocking the Potential of the Cloud for IBM Power Systems
Unlocking the Potential of the Cloud for IBM Power SystemsUnlocking the Potential of the Cloud for IBM Power Systems
Unlocking the Potential of the Cloud for IBM Power Systems
 
APIForce Zurich 5 April Automation LPDG
APIForce Zurich 5 April  Automation LPDGAPIForce Zurich 5 April  Automation LPDG
APIForce Zurich 5 April Automation LPDG
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
 
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
 
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
 
Artificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning eraArtificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning era
 
The transition to renewables in India.pdf
The transition to renewables in India.pdfThe transition to renewables in India.pdf
The transition to renewables in India.pdf
 

International Refereed Journal of Engineering and Science (IRJES)

  • 1. International Refereed Journal of Engineering and Science (IRJES) ISSN (Online) 2319-183X, (Print) 2319-1821 Volume 2, Issue 10 (October 2013), PP. 12-14 A study of neural network algorithms Namrata Aneja (M.C.A., M.Phill.), Dyal Singh College, Karnal., Haryana, India. Abstract:- In this research paper I have tried to accumulate few different theories prevailing regarding neural networks algorithms. All the different theories have a different aspect to consider and have a different idea to work on. Though all have different process of gathering weights, different variables and parameters and different points , logics to establish, but one thing is common they all have used learning methods and have been successful in doing so. I. INTRODUCTION The human brain is one of the most advanced forms of computer system. The neural network is controlled by the brain and through it; the brain is able to control various functions of the rest of the body. Due to this, computer scientists have undertaken deep study over the years of evolution of computing. This is the reason why several algorithms simulating the human neural networks have been invented. They are especially useful in the field of artificial intelligence. II. BACK PROPAGATION ALGORITHM Several algorithms have been developed in neural networks and one of them is the backward propagation algorithm. It is an intelligent network whose name is derived from its learning mechanism. It learns through experience/example. According to the requirements of the task, the algorithm alters the weights attached to the network. After it completes its training, it will output the results based on the original inputs. It is best suited for tasks involving recognition of patterns and mapping them onto actions. After the first few experiences, the algorithm learns and is able to conduct subsequent mapping independently. The training of the algorithm begins by setting all the network weights to a small value (between -1 and 1). After application of the required input pattern, the results will be incorrect since the network weights are assigned randomly. To rectify this, the error is calculated by subtracting the output from what should have been the correct output. This is called supervised training where the input and expected output are already known. Based on the results of the calculation, the network weights are changed. The error keeps getting smaller with each error calculation and weight change until finally the results are acceptable. The figure below illustrates the learning process of a neural network in recognizing the first four letters of the alphabet. From the example above, after several iterations of changing the network weights, the network should be able to correctly recognize the letters. At this stage, it is safe to stop the training since the network has been fully trained. However, the decision requires there be a set value of minimum error at which the training can stop. A validation set can also be used to stop the training since the network may slow down from overtraining www.irjes.com 12 | Page
  • 2. A study of neural network algorithms and being too correct. The backward propagation algorithm is very good at recognizing patterns. However, it lacks the capability to recognize patterns in a noisy environment with many distractions. III. BACK PROPAGATION THROUGH TIME The back propagation through time algorithm is another algorithm designed for the purpose of training networks. It is a variant of the back propagation algorithm that is used for recurrent networks training them through discrete time steps. Random numbers of feedback iterations may be included in the algorithm. However, the algorithm may lack connections in its inputs (Amir et al 2007). This algorithm has several variations that have been widely used. The first is the back propagation through time with online update algorithm. Each weight’s gradient is calculated and added to the back step copies of previous layers. The change in weights of the previous pattern is also factored in. The algorithm is especially useful in large networks since the updates of the patterns are made much more frequently. Another variation of the back propagation through time algorithm is the batch propagation though time. The gradient for each weight is factored in by averaging it over the entire set undergoing the training. Under the back propagation through time algorithm, the network processes pattern sequences through a series of defined activations. By applying an input pattern of zero, all the activities within the model can be set to zero from where processing begins. The Levenberg-Marquardt algorithm This algorithm is directly derived from numeric algebra. The main activity here is to solve the equation below. (J t J + ƛI)Ǭ = J t E J stands for the Jacobian matrix calculated using the formula below It is an N by W matrix where N is the total number of inputs to the training and W the parameters of the training (weights). The chain rule of calculus can be very effective in calculating the Jacobian. The J t J value is called the Hessian and can be accurately calculated if the errors within the function are minimized. ƛ is the damping factor in the equation and starts at a minimal value, as low as 0.1. After arriving at the solution to the equation, the Ǭ value is added back to the weights to update them. The sum of squared errors is also calculated and added back to ƛ. The algorithm is basically an iteration in which the value of ƛ is continually updated until the sum of squares of errors are minimal. The value of the initial network weights has a large impact on the working of this algorithm. Though the calculation of the Jacobian matrix is a major part of this implementation, there is also the question of organizing the iterative training process. The algorithm works under the assumption that if the error is lower than the preceding one, then the quadratic approximation function is doing its work well. If it goes higher, this means that there is need for examination of the gradient of curvature and finding a new combination coefficient. The figure below summarizes the training process of this algorithm. www.irjes.com 13 | Page
  • 3. A study of neural network algorithms This algorithm is efficient in solving the problems associated with methods such as the Gauss-Newton and the gradient descent methods. It is therefore one of the most efficient training algorithms today. IV. THE GENETIC ALGORITHM APPLIED TO THE HOPFIELD NETWORK The Hopfield network is another neural network that has been developed. This network is made of a set of two neurons that have been fully connected. The two neurons have either an on or off status giving them their characteristic two state binary nature. The neurons take input and the total value of their inputs determines the state of the neuron. This network cannot be trained using all the training algorithms available since tests have shown that it can only be trained using six of the available patterns. The speed of training the Hopfield network is one epoch. This is enough to train the entire network in two iterations. The size of the network is 14520 units. the Hopfield network uses a basic model in which all the neurons have been connected together. The weights on the connections between neurons are systematically arranged using an organized matrix of wij. The learning process of this network begins by setting the nodes to some known value (Karayiannis et al 1993). Several iterations are then performed through either asynchronous or synchronous update methods. This continues for a while and then stops at which point the neurons are read and the network formed interpreted. The model works on the assumption that networks are stored in the weight matrices. The input to the algorithm should contain an embedded pattern. Using a mechanism of autoassociation, the network can divide the patterns stored in the network into two parts; a cue and the association. To retrieve the network from the matrix, the user simply enters the cue. The model offers two options for a weight matrix, being +1 or -1. For a value of 1, it could have the following two matrices (1, 1) or (-1, -1). Both of these are stable states. For a value of -1, the matrices are either (1, -1) or (-1, 1). The states are updated synchronously and therefore may change accordingly. This model is heavily dependent on the values of its weight matrix since this is where the patterns are derived from. Therefore, understanding this model begins by first understanding the mechanism of setting the weight matrices. If the weight between two neurons has a positive value, they will exhibit the tendency to drag each other in the same direction and vice versa (Patrick 2008). The Hopfield network is based on the recall mechanism of the human brain. This is called content addressable memory. The input values to the model contain an embedded pattern that is then interpreted by the model’s mechanisms. In the event that some of the neurons are destroyed, the network’s performance degrades. However, this does not mean that it loses all its functionality. Just like in the human brain where brain damage does not mean the total loss of all functionality, some of the network’s functionality still remains even with severe network damage (Alexander et al 2011). V. CONCLUSION In conclusion it can be said that back propogation algorithm is efficiently effective in pattern recognition where as the levenberg and Marquart are used for guassian newton and gradient metods. Where as Hopfield network is an emulation of working of neuron used in recalling process in brain, but all the algorithm have been successful in proving the fact of learning. Which is done by all the networks discussed. WORKS CITED [1]. [2]. [3]. [4]. [5]. [6]. [7]. Alexander g, erik, ivan, róbert s, martina v. Comparison of neural networks learning algorithms for simulation of rectilinear snake locomotion. Modelling of mechanical and mechatronic systems, 2011. Amir A S, Mohammad B T, and Abbas H. Modified Levenberg-Marquardt Method for Neural Networks Training. World Academy of Science, Engineering and Technology 6, 2007. Haykin, Simon S. Neural Networks: A Comprehensive Foundation. New York: Macmillan, 1994. Print. Karayiannis, N B, and A N. Venetsanopoulos. Artificial Neural Networks: Learning Algorithms, Performance Evaluation, and Applications. Boston: Kluwer Academic, 1993. Print. MacKay, David J. C. Information Theory, Inference, and Learning Algorithms. Cambridge, UK: Cambridge University Press, 2003. Print. Mandic, Danilo P, and Jonathon A. Chambers. Recurrent Neural Networks for Prediction: Learning Algorithms, Architectures, and Stability. Chichester: John Wiley, 2001. P. Patrick van &r Smagt. A comparative study of neural network algorithms applied to optical character recognition, 2008. www.irjes.com 14 | Page