SlideShare uma empresa Scribd logo
1 de 8
Baixar para ler offline
International Journal of Advanced Research in Engineering and Technology (IJARET), ISSN
0976 – 6480(Print), ISSN 0976 – 6499(Online) Volume 4, Issue 3, April (2013), © IAEME
93
TRAINING THE NEURAL NETWORK USING
LEVENBERG-MARQUARDT’S ALGORITHM TO OPTIMIZE THE
EVACUATION TIME IN AN AUTOMOTIVE VACUUM PUMP
Vijayashree1
*, Kolla Bhanu Prakash2
and T.V. Ananthan3
1, 2, 3
Department of Computer Science and Engineering, Dr. MGR Educational and Research Institute
University, Maduravoyal, Chennai 600 095, India
ABSTRACT
Neural networks have been used for engine computations in the recent past. One reason for using
neural networks is to capture the accuracy of experimental data while saving computational time, so
that system simulations can be performed within a reasonable time frame. The main aim of this study is
to optimize and arrive at a design base for a vacuum pump in an automotive engine using
Levenberg-Marquardt’s (LM) Algorithm for Artificial Neural Networking (ANN). Design bases are
created based on the previous products and by bench marking. Effortless application of brake is a
preferred comfort feature in automotive application. To provide an easy and effective feeling, the
braking mechanism needs to be assisted with external energy. This is optimized based on LM algorithm
using the neural network to arrive at the optimum evacuation time..
Index Terms: automotive engine, braking system, evacuation time, Levenberg-Marquardt’s (LM)
Algorithm, neural networks, vacuum pump.
I. INTRODUCTION
Effortless application of brake is a preferred comfort feature in automotive application. To
provide an easy and effective feeling, the braking mechanism needs to be assisted with external energy.
Vane type Vacuum pump exactly serves this purpose, which is used to produce vacuum by evacuating
the air in the vacuum booster. This vacuum is used to actuate the booster for the power brakes in the
diesel-powered and Gasoline Direct Injection automobile. The capacity of the vacuum pump varies
based on the weight and brake booster capacity of the vehicle. Therefore, it is necessary to have a
design base with a proven technique, which will serve as a basis for faster product development.
Neural networks and other machine learning algorithms are increasingly being used for engine
applications [1]. These applications can be categorized as either real time control/diagnostic methods
INTERNATIONAL JOURNAL OF ADVANCED RESEARCH IN
ENGINEERING AND TECHNOLOGY (IJARET)
ISSN 0976 - 6480 (Print)
ISSN 0976 - 6499 (Online)
Volume 4, Issue 3, April 2013, pp. 93-100
© IAEME: www.iaeme.com/ijaret.asp
Journal Impact Factor (2013): 5.8376 (Calculated by GISI)
www.jifactor.com
IJARET
© I A E M E
International Journal of Advanced Research in Engineering and Technology (IJARET), ISSN
0976 – 6480(Print), ISSN 0976 – 6499(Online) Volume 4, Issue 3, April (2013), © IAEME
94
or predictive tools for design purposes. Some applications have even moved downstream of the engine
[2]. The present work aims to use neutral network technique using LM algorithm to arrive at the
appropriate evacuation time which is a critical parameter. The particular task selected is to minimize
the evacuation time in a vane type vacuum pump. The dataset used are the experimental results
conducted at UCAL Fuel Systems Ltd. Chennai.
II. VACUUM PUMP
Vane type vacuum pump has a unique profile in which an eccentrically mounted rotor rotates the
vane as shown in the Fig.1. The movement of vanes creates pressure difference, which creates vacuum
in brake booster. Air enters the pump through inlet check valve assembly. Oil is circulated inside the
pump to lubricate the rotating parts and to maintain sealing between the high pressure and low pressure
regions [3, 4, 5]. The air and oil mixture are then expelled outside the pump through the reed valve. The
performance of the pump is specified by evacuation time of a specified tank volume [3].
Evacuation time, t = (Vt / Q ) / ln (p1 / p2)
Where Vt is tank volume; p1 is atmospheric pressure and p2 is required pressure.
Vane type vacuum pump is used to produce vacuum by evacuating the air in the vacuum booster.
This vacuum is used to actuate the booster for the power brakes in the diesel-powered and GDI
automobile. The capacity of the vacuum pump varies based on the weight and brake booster capacity of
the vehicle. Therefore, it is necessary to have a design base with a proven technique, which will serve as
a basis for faster product development.
These results obtained from the existing pump were used for training the ANN using LM algorithm
to create the design base for any future design. Figure 1 shows the vacuum pump of capacity 110cc
.
Fig.1 Photograph of vacuum pump of capacity 110cc
III. LEVENBERG-MARQUARDT’S ALGORITHM
The LM algorithm is an iterative technique that locates a local minimum of a multivariate
function that is expressed as the sum of squares of several non-linear, real-valued functions. It has
become a standard technique for nonlinear least-squares problems, widely adopted in various
disciplines for dealing with data-fitting applications. LM can be thought of as a combination of steepest
descent and the Gauss-Newton method. When the current solution is far from a local minimum, the
algorithm behaves like a steepest descent method: slow, but guaranteed to converge. When the current
solution is close to a local minimum, it becomes a Gauss-Newton method and exhibits fast
convergence.
Input:
A vector function f : Rm
→ Rn
with n ≥ m, a measurement vector x ∈∈∈∈ Rn
and an initial parameters
estimate p0 ∈∈∈∈ Rm
.
International Journal of Advanced Research in Engineering and Technology (IJARET), ISSN
0976 – 6480(Print), ISSN 0976 – 6499(Online) Volume 4, Issue 3, April (2013), © IAEME
95
Output:
A vector p+
∈∈∈∈ Rm
minimizing ||x – f(p) ||2
Algorithm:
k := 0; v := 2; p := p0;
A := JT
J; ∈∈∈∈P := x – f(p); g := JT
∈∈∈∈P;
stop := (||g||∞ ≤ ∈∈∈∈1); µ := τ * maxi=1, …, m (Aii);
while (not stop) and (k < kmax)
k := k + 1;
repeat
Solve (A + µI) δP = g;
if (||δP ||≤ ∈∈∈∈2 ||p||)
stop := true;
else
pnew := p + δP;
ρ := (||∈∈∈∈P ||2
− ||x – f(pnew)||2
) / ( T
Pδ (µδP + g));
if ρ > 0
p = pnew;
A := JT
J; ∈∈∈∈P := x – f(p); g := JT
∈∈∈∈P;
stop := (||g||∞ ≤ ∈∈∈∈1);
µ := µ * max(1/3, 1 – (2ρ – 1)3
); v := 2;
else
µ := µ * v; v := 2 * v;
endif
endif
until (ρ > 0) or (stop)
endwhile
p+
:= p;
The above is Levenberg-Marquardt nonlinear least squares algorithm. ρis the gain ratio, defined
by the ratio of the actual reduction in the error (||∈∈∈∈P ||2
) that corresponds to a step δP and the reduction
predicted for δP by the linear model of Eq. (1). See text and [6,7] for details. When LM is applied to the
problem, the operation enclosed in the rectangular box is carried out by taking into account the sparse
structure of the corresponding Hessian matrix A.
In the following, vectors and arrays appear in boldface and T
is used to denote transposition. Also,
||.|| and ||.||∞ respectively denote the 2 and infinity norms. Let f be an assumed functional relation which
maps a parameter vector p ∈∈∈∈ Rm
to an estimated measurement vector x = f(p), x ∈∈∈∈ Rn
. An initial
parameter estimate p0 and a measured vector x are provided and it is desired to find the vector p+
that
best satisfies the functional relation f locally, i.e. minimizes the squared distance ∈∈∈∈T
∈∈∈∈ with ∈∈∈∈ = x - x
for all p within a sphere having a certain, small radius. The basis of the LM algorithm is a linear
approximation to f in the neighborhood of p. Denoting by J the Jacobian matrix
p
p
∂
∂ )(f
, a Taylor series
expansion for a small ||δP|| leads to the following approximation f (p + δP ) ≈ f (p) + J δP (1)
Like all non-linear optimization methods, LM is iterative. Initiated at the starting point p0, it produces a
series of vectors p1, p2, … that converge towards a local minimize p+
for f. Hence, at each iteration, it is
required to find the step δP that minimizes the quantity ||x −−−− f (p + δP ) || ≈ ||x −−−− f (p) − J δP || = ||∈∈∈∈−−−− J δP||
(2)
International Journal of Advanced Research in Engineering and Technology (IJARET), ISSN
0976 – 6480(Print), ISSN 0976 – 6499(Online) Volume 4, Issue 3, April (2013), © IAEME
96
The sought δP is thus the solution to a linear least-squares problem: the minimum is attained when J
δP −−−− ∈∈∈∈ is orthogonal to the column space of J. This leads to JT
(J δP −−−− ∈∈∈∈) = 0, which yields the
Gauss-Newton step δP; as the solution of the so-called normal equations: JT
J δP = JT
∈∈∈∈ (3)
Ignoring the second derivative terms, matrix JT
J in Eq.(3) approximates the Hessian of ½∈∈∈∈T
∈∈∈∈
[18]. Note also that JT
∈∈∈∈ is along the steepest descent direction, since the gradient of ½∈∈∈∈T
∈∈∈∈ is −JT
∈∈∈∈.
The LM method actually solves a slight variation of Eq. (3), known as the augmented normal equations:
N δP = JT
∈∈∈∈, with N ≡≡≡≡ JT
J + µI and µ > 0 (4)
Where I is the identity matrix. The strategy of altering the diagonal elements of JT
J is called
damping and µ is referred to as the damping term. If the updated parameter vector p +δP with δP
computed from Eq. (4) leads to a reduction in the error ∈∈∈∈T
∈∈∈∈, the update is accepted and the process
repeats with a decreased damping term. Otherwise, the damping term is increased, the augmented
normal equations are solved again and the process iterates until a value of δP that decreases the error is
found. The process of repeatedly solving Eq. (4) for different values of the damping term until an
acceptable update to the parameter vector is found corresponds to one iteration of the LM algorithm.
In LM, the damping term is adjusted at each iteration to assure a reduction in the error. If the damping
is set to a large value, matrix N in Eq. (4) is nearly diagonal and the LM update step δP is near the
steepest descent direction JT
∈∈∈∈. Moreover, the magnitude of δP is reduced in this case, ensuring that
excessively large Gauss-Newton steps are not taken.
Damping also handles situations where the Jacobian is rank deficient and JT
J is therefore
singular [4]. The damping term can be chosen so that matrix N in Eq. (4) is nonsingular and, therefore,
positive definite, thus ensuring that the δP computed from it is in a descent direction. In this way, LM
can defensively navigate a region of the parameter space in which the model is highly nonlinear. If the
damping is small, the LM step approximates the exact Gauss-Newton step. LM is adaptive because it
controls its own damping: it raises the damping if a step fails to reduce ∈∈∈∈T
∈∈∈∈ otherwise it reduces the
damping. By doing so, LM is capable of alternating between a slow descent approach when being far
from the minimum and a fast, quadratic convergence when being at the minimum’s neighborhood [8].
The LM algorithm terminates when at least one of the following conditions is met:
1. The gradient’s magnitude drops below a threshold ε1.
2. The relative change in the magnitude of δP drops below a threshold ε2.
3. A maximum number of iterations kmax is reached.
The complete LM algorithm is shown in the above pseudocode; more details regarding it can be
found in [6]. The initial damping factor is chosen equal to the product of a parameter τ with the
maximum element of JT
J in the main diagonal. Indicative values for the user-defined parameters are τ =
10−3
, ε1 = ε2 = 10−2
, kmax = 100.
IV. METHODOLOGY OF NEURAL NETWORKS IN VACUUM PUMP PERFORMANCE
OPTIMIZATION
The performance of the vacuum pump is determined by time required to evacuate air from the
reservoir. This function depends on the various parameters like temperature, oil pressure, rotation
speed etc. The vacuum pump development requires the procedure to develop the pump of any capacity
based on the customer requirement.
In this first training stage, the inputs and the desired outputs are given to the NN. The weights are
modified to minimize the error between the NN predictions and expected outputs. Different types of
learning algorithms have been developed, but the most common and robust one is back-propagation.
The goal of the training is to minimize the error, and consequently to optimize the NN solution. Each
iterative step in which the weights are recalculated is called epoch. When the minimum is achieved, the
weights are fixed and the training process ends. Once a neural network has been trained to a satisfactory
International Journal of Advanced Research in Engineering and Technology (IJARET), ISSN
0976 – 6480(Print), ISSN 0976 – 6499(Online) Volume 4, Issue 3, April (2013), © IAEME
97
level, it may be used as a predictive tool for new data. To do this, only the inputs are given to the NN,
and the NN predicted outputs are calculated using the previous error minimizing weights.
V. RESULTS AND DISCUSSION
The dataset used was obtained from UCAL Fuel Systems Ltd, Chennai. There were 4 sets of
training data, each set corresponding to a different combination of pump and tank capacity, speed,
pressure and evacuation time.
There were 21x6 training data points and 4 input features. The target values were the 21x6
normalized (by the minimum possible evacuation time) values. There were 10 such sets for testing too.
No tuning set was required to be extracted from the training data, since because of the large number of
training data points, the training error as well as tune error decreased asymptotically, beyond a few
hundred epochs, and early stopping did not occur. The MATLAB neural network toolbox was used to
build the baseline neural networks. The Levenberg-Marquardt algorithm [9, 10] was used with the back
propagation algorithm. Twenty five hidden layers with an optimal 10 neurons having sigmoid
activation function, and the output layer having a ten neuron with a linear activation function was the
chosen configuration. The Nguyen-Widow method was used to initialize the weights. Evacuation time
predictions were made using this configuration (baseline case).
The reasons to incorporate a physical model into a neural network are:
1. To make the network more robust. Even if confronted with a set of conditions very different from
those encountered in the training data, the network should output realistic results.
2. To reduce dependence on training data, i.e. to enable the network to form a reasonable hypothesis,
from small datasets.
3. To improve the prediction accuracy.
Table 1 Experimental data for tank capacity 100 cc and pump capacity 3 cc.
Temperature
Speed
400 1000 1500 2300
50 3.47 1.97 1.7 1.61
90 3.53 1.98 1.8 1.7
120 3.92 2.08 1.8 1.75
150 4.77 2.16 1.17 1.72
Table 2 ANN result for tank capacity 100 cc and pump capacity 3 cc (hidden layers: 25)
Temperature
Evacuation time
Speed
400 1000 1500 2300
50 3.47912 1.7302 1.9189 1.60273
90 3.53071 1.98974 1.32223 1.67414
120 3.90548 2.18308 0.84523 1.73175
150 4.90085 1.78111 2.24074 1.67527
The reported error is the mean square error over normalized evacuation time values. It is always the
test error, unless otherwise mentioned. It was noticed from error plots that most of the error occurred
International Journal of Advanced Research in Engineering and Technology (IJARET), ISSN
0976 – 6480(Print), ISSN 0976 – 6499(Online) Volume 4, Issue 3, April (2013), © IAEME
98
over the -0.2396 region (Fig.2). The other regions had much smaller errors and this error were therefore
chosen for comparison with the three new methods.
Fig.2 Error histogram
The mean square error of the model output to the target output is a typical measure of neural
network performance. However, it was found that there are practical difficulties in establishing
acceptance criteria for the mean square error. Therefore a normalised version of the mean square error
was implemented. This normalised mean square error used the nearer specification limit concept that
was modified to encompass the definition of an acceptable percentage error level. Here, the acceptable
error was equated to the typical level of propagated error that one would expect from the
instrumentation measuring the engine performance. This was consistent with the idea that it is
reasonable not to expect a higher standard of inference using the model than one could expect from
direct measurement of the engine performance.
The performance obtained during the training are
Performance = 0.1601
trainPerformance = 8.4504e-008
valPerformance = 0.4123
testPerformance = 0.2283
During training, the progress is constantly updated in the training window. Of most interest are
the performance, the magnitude of the gradient of performance and the number of validation checks.
The magnitude of the gradient and the number of validation checks are used to terminate the training.
The gradient will become very small as the training reaches a minimum of the performance. If the
magnitude of the gradient is less than 1e-5, the training will stop (Fig.3). This limit can be adjusted by
setting the parameter net.trainParam.min_grad. The number of validation checks represents the number
of successive iterations that the validation performance fails to decrease. If this number reaches 6 (the
default value), the training will stop.
International Journal of Advanced Research in Engineering and Technology (IJARET), ISSN
0976 – 6480(Print), ISSN 0976 – 6499(Online) Volume 4, Issue 3, April (2013), © IAEME
99
Fig.3 Gradient plot
The performance plot (Fig.4) shows the value of the performance function versus the iteration
number (epochs). It plots training, validation and test performances. The best validation performance is
0.17081 at epoch1.
Fig.4 Performance plot
The training state plot shows the progress of other training variables, such as the gradient magnitude,
the number of validation checks, etc (Fig.5). The error histogram plot shows the distribution of the
network errors. The regression plot shows a regression between network outputs and network targets.
Fig.5 Training regeression plots
The three axes represent the training, validation and testing data. The dashed line in each axis
represents the perfect result – outputs = targets. The solid line represents the best fit linear regression
line between outputs and targets. The R value is an indication of the relationship between the outputs
and targets. If R = 1, this indicates that there is an exact linear relationship between outputs and targets.
International Journal of Advanced Research in Engineering and Technology (IJARET), ISSN
0976 – 6480(Print), ISSN 0976 – 6499(Online) Volume 4, Issue 3, April (2013), © IAEME
100
If R is close to zero, then there is no linear relationship between outputs and targets. For this example,
the training data indicates a good fit. The validation and test results also show R values that greater than
0.9. The scatter plot is helpful in showing that certain data points have poor fits. Here in this R at
training, validation, test and with all the three are 0.083294, 0.13655, 0.80023 and 0.080557
respectively.
VI. CONCLUSION
From the results obtained from the above Levenberg-Marquardt’s algorithm, it can be concluded
that the above algorithm works quite satisfactorily in optimizing the evacuation time in automotive
engines. The above optimization has been validated and found to be accurate to 5% level. The deviation
of NN optimized values were also found within 5%, when compared with experimental results.
VII. ACKNOWLEDGEMENT
I wish to acknowledge Mr. J. Suresh Kumar, Deputy General Manager of UCAL Fuel Systems
Ltd, Chennai for his help in conducting the experiments and generating the data set to do this project
and validate the same in their prototype.
REFERENCES
[1] Indranil Brahma, Yongsheng He and Christopher J. Rutland, Improvement of Neural Network Accuracy for
Engine Simulations, SAE Paper 2003-01-3227
[2] He, Y. and Rutland, C.J., “Application of Artificial Neural Network for Integration of Advanced Engine
Simulation Methods”, Proceedings of the 2000 Fall Technical Conference of the ASME Internal Combustion
Engine Division, ICE-Vol.35-1, 53-64, Paper No. 2000-ICE-304, 2000
[3] Chambers, A., Fitch, R. K., Halliday, B. S., “Basic Vacuum Technology,” ISBN 0-75-030495-2, 1998.
[4] Nagendiran, S., Sivanantham, R., and Kumar, J.,“Improvement of the Performance of Cam-Operated Vacuum
Pump for Multi Jet Diesel Engine,” SAE Technical Paper 2009-01-1462, 2009, doi:10.4271/2009-01-1462.
[5] Nagendiran S R, Arun Subramanian, J Suresh kumar and Ramalingam Sivanantham Designing of Automotive
Vacuum Pumps - Development of Mathematical Model for Critical Parameters and Optimization using
Artificial Neural Networks, SAE Paper No.2012-01-0779K. Madsen, H. Nielsen, and O. Tingleff. Methods for
Non-Linear Least Squares Problems. Technical University of Denmark, 2004. Lecture notes, available at
http://www.imm.dtu.dk/courses/02611/nllsq.pdf.
[6] Manolis I.A. Lourakis and Antonis A. Argyros, Is Levenberg-Marquardt the Most Efficient Optimization
Algorithm for Implementing Bundle Adjustment? Proceedings of the Tenth IEEE International Conference on
Computer Vision (ICCV’05), IEEE Computer Society
[7] J. Dennis and R. Schnabel. Numerical Methods for Unconstrained Optimization and Nonlinear Equations.
Classics in Applied Mathematics. SIAM Publications, Philadelphia, 1996.
[8] Indranil Brahma, Yongsheng He and Christopher J. Rutland, Improvement of Neural Network Accuracy for
Engine Simulations SAE Paper 2003-01-3227
[9] Hagan, M.T. and Menjaj, M.B., “Training Feedforward Networks with the Marquardt Algorithm”, IEEE
Transactions on Neural Networks, Vol. 5, No. 6, pp.989-993, 1994.
[10] Pallavi.H.Agarwal, Prof.Dr.P.M.George and Prof.Dr.L.M.Manocha, “Comparison Of Neural Network
Models On Material Removal Rate Of C-Sic” International Journal Of Design And Manufacturing Technology
(IJDMT) Volume 3, Issue 1, 2012, pp. 1 – 10, ISSN Print: 0976 – 6995, ISSN Online: 0976 – 7002
[11] Dharmendra Kumar Singh, Dr.Moushmi Kar And Dr.A.S.Zadgaonkar, “Analysis Of Generated Harmonics
Due To Transformer Load On Power System Using Artificial Neural Network” International Journal of
Electrical Engineering & Technology (IJEET) Volume 4, Issue 1, 2013, pp. 81 – 90, ISSN PRINT: 0976-6545,
ISSN ONLINE: 0976-6553.

Mais conteúdo relacionado

Mais procurados

Discrete-wavelet-transform recursive inverse algorithm using second-order est...
Discrete-wavelet-transform recursive inverse algorithm using second-order est...Discrete-wavelet-transform recursive inverse algorithm using second-order est...
Discrete-wavelet-transform recursive inverse algorithm using second-order est...TELKOMNIKA JOURNAL
 
Performance analysis and randamized agoritham
Performance analysis and randamized agorithamPerformance analysis and randamized agoritham
Performance analysis and randamized agorithamlilyMalar1
 
Signal modelling
Signal modellingSignal modelling
Signal modellingDebangi_G
 
parametric method of power spectrum Estimation
parametric method of power spectrum Estimationparametric method of power spectrum Estimation
parametric method of power spectrum Estimationjunjer
 
ESTIMATE OF THE HEAD PRODUCED BY ELECTRICAL SUBMERSIBLE PUMPS ON GASEOUS PETR...
ESTIMATE OF THE HEAD PRODUCED BY ELECTRICAL SUBMERSIBLE PUMPS ON GASEOUS PETR...ESTIMATE OF THE HEAD PRODUCED BY ELECTRICAL SUBMERSIBLE PUMPS ON GASEOUS PETR...
ESTIMATE OF THE HEAD PRODUCED BY ELECTRICAL SUBMERSIBLE PUMPS ON GASEOUS PETR...ijaia
 
Seminar Report (Final)
Seminar Report (Final)Seminar Report (Final)
Seminar Report (Final)Aruneel Das
 
Power density Spectrum
Power density SpectrumPower density Spectrum
Power density SpectrumSaifur Rahman
 
Channel and clipping level estimation for ofdm in io t –based networks a review
Channel and clipping level estimation for ofdm in io t –based networks a reviewChannel and clipping level estimation for ofdm in io t –based networks a review
Channel and clipping level estimation for ofdm in io t –based networks a reviewIJARIIT
 
Analysis of multipath channel delay estimation using subspace fitting
Analysis of multipath channel delay estimation using subspace fittingAnalysis of multipath channel delay estimation using subspace fitting
Analysis of multipath channel delay estimation using subspace fittingTarik Kazaz
 
The Chaos and Stability of Firefly Algorithm Adjacent Individual
The Chaos and Stability of Firefly Algorithm Adjacent IndividualThe Chaos and Stability of Firefly Algorithm Adjacent Individual
The Chaos and Stability of Firefly Algorithm Adjacent IndividualTELKOMNIKA JOURNAL
 
Firefly Algorithm: Recent Advances and Applications
Firefly Algorithm: Recent Advances and ApplicationsFirefly Algorithm: Recent Advances and Applications
Firefly Algorithm: Recent Advances and ApplicationsXin-She Yang
 
Computational Method to Solve the Partial Differential Equations (PDEs)
Computational Method to Solve the Partial Differential  Equations (PDEs)Computational Method to Solve the Partial Differential  Equations (PDEs)
Computational Method to Solve the Partial Differential Equations (PDEs)Dr. Khurram Mehboob
 
Art%3 a10.1155%2fs1110865704401036
Art%3 a10.1155%2fs1110865704401036Art%3 a10.1155%2fs1110865704401036
Art%3 a10.1155%2fs1110865704401036SANDRA BALSECA
 
Economic Load Dispatch Problem with Valve – Point Effect Using a Binary Bat A...
Economic Load Dispatch Problem with Valve – Point Effect Using a Binary Bat A...Economic Load Dispatch Problem with Valve – Point Effect Using a Binary Bat A...
Economic Load Dispatch Problem with Valve – Point Effect Using a Binary Bat A...IDES Editor
 
Discrete time control systems
Discrete time control systemsDiscrete time control systems
Discrete time control systemsadd0103
 

Mais procurados (20)

Discrete-wavelet-transform recursive inverse algorithm using second-order est...
Discrete-wavelet-transform recursive inverse algorithm using second-order est...Discrete-wavelet-transform recursive inverse algorithm using second-order est...
Discrete-wavelet-transform recursive inverse algorithm using second-order est...
 
Performance analysis and randamized agoritham
Performance analysis and randamized agorithamPerformance analysis and randamized agoritham
Performance analysis and randamized agoritham
 
Da36615618
Da36615618Da36615618
Da36615618
 
Signal modelling
Signal modellingSignal modelling
Signal modelling
 
parametric method of power spectrum Estimation
parametric method of power spectrum Estimationparametric method of power spectrum Estimation
parametric method of power spectrum Estimation
 
ESTIMATE OF THE HEAD PRODUCED BY ELECTRICAL SUBMERSIBLE PUMPS ON GASEOUS PETR...
ESTIMATE OF THE HEAD PRODUCED BY ELECTRICAL SUBMERSIBLE PUMPS ON GASEOUS PETR...ESTIMATE OF THE HEAD PRODUCED BY ELECTRICAL SUBMERSIBLE PUMPS ON GASEOUS PETR...
ESTIMATE OF THE HEAD PRODUCED BY ELECTRICAL SUBMERSIBLE PUMPS ON GASEOUS PETR...
 
40220130405004
4022013040500440220130405004
40220130405004
 
Seminar Report (Final)
Seminar Report (Final)Seminar Report (Final)
Seminar Report (Final)
 
Power density Spectrum
Power density SpectrumPower density Spectrum
Power density Spectrum
 
Channel and clipping level estimation for ofdm in io t –based networks a review
Channel and clipping level estimation for ofdm in io t –based networks a reviewChannel and clipping level estimation for ofdm in io t –based networks a review
Channel and clipping level estimation for ofdm in io t –based networks a review
 
Analysis of multipath channel delay estimation using subspace fitting
Analysis of multipath channel delay estimation using subspace fittingAnalysis of multipath channel delay estimation using subspace fitting
Analysis of multipath channel delay estimation using subspace fitting
 
The Chaos and Stability of Firefly Algorithm Adjacent Individual
The Chaos and Stability of Firefly Algorithm Adjacent IndividualThe Chaos and Stability of Firefly Algorithm Adjacent Individual
The Chaos and Stability of Firefly Algorithm Adjacent Individual
 
Firefly Algorithm: Recent Advances and Applications
Firefly Algorithm: Recent Advances and ApplicationsFirefly Algorithm: Recent Advances and Applications
Firefly Algorithm: Recent Advances and Applications
 
1308.3898
1308.38981308.3898
1308.3898
 
I1065259
I1065259I1065259
I1065259
 
Computational Method to Solve the Partial Differential Equations (PDEs)
Computational Method to Solve the Partial Differential  Equations (PDEs)Computational Method to Solve the Partial Differential  Equations (PDEs)
Computational Method to Solve the Partial Differential Equations (PDEs)
 
Art%3 a10.1155%2fs1110865704401036
Art%3 a10.1155%2fs1110865704401036Art%3 a10.1155%2fs1110865704401036
Art%3 a10.1155%2fs1110865704401036
 
Economic Load Dispatch Problem with Valve – Point Effect Using a Binary Bat A...
Economic Load Dispatch Problem with Valve – Point Effect Using a Binary Bat A...Economic Load Dispatch Problem with Valve – Point Effect Using a Binary Bat A...
Economic Load Dispatch Problem with Valve – Point Effect Using a Binary Bat A...
 
Discrete time control systems
Discrete time control systemsDiscrete time control systems
Discrete time control systems
 
MPC
MPCMPC
MPC
 

Destaque

Effect of different types of steel fibers with metakaolin & fly
Effect of different types of steel fibers with metakaolin & flyEffect of different types of steel fibers with metakaolin & fly
Effect of different types of steel fibers with metakaolin & flyIAEME Publication
 
A survey of day of the month effect in world stock markets 2
A survey of day of the month effect in world stock markets 2A survey of day of the month effect in world stock markets 2
A survey of day of the month effect in world stock markets 2IAEME Publication
 
Review on vibration analysis with digital image processing
Review on vibration analysis with digital image processingReview on vibration analysis with digital image processing
Review on vibration analysis with digital image processingIAEME Publication
 
Reactive power aspects in reliability assessment of power systems
Reactive power aspects in reliability assessment of power systemsReactive power aspects in reliability assessment of power systems
Reactive power aspects in reliability assessment of power systemsIAEME Publication
 
Design of a mode decoupling facts device for voltage control of wind driven i...
Design of a mode decoupling facts device for voltage control of wind driven i...Design of a mode decoupling facts device for voltage control of wind driven i...
Design of a mode decoupling facts device for voltage control of wind driven i...IAEME Publication
 
A secure modification to hsiang shih’s scheme
A secure modification to hsiang shih’s schemeA secure modification to hsiang shih’s scheme
A secure modification to hsiang shih’s schemeIAEME Publication
 
Development of back propagation neural network model to predict performance a...
Development of back propagation neural network model to predict performance a...Development of back propagation neural network model to predict performance a...
Development of back propagation neural network model to predict performance a...IAEME Publication
 

Destaque (7)

Effect of different types of steel fibers with metakaolin & fly
Effect of different types of steel fibers with metakaolin & flyEffect of different types of steel fibers with metakaolin & fly
Effect of different types of steel fibers with metakaolin & fly
 
A survey of day of the month effect in world stock markets 2
A survey of day of the month effect in world stock markets 2A survey of day of the month effect in world stock markets 2
A survey of day of the month effect in world stock markets 2
 
Review on vibration analysis with digital image processing
Review on vibration analysis with digital image processingReview on vibration analysis with digital image processing
Review on vibration analysis with digital image processing
 
Reactive power aspects in reliability assessment of power systems
Reactive power aspects in reliability assessment of power systemsReactive power aspects in reliability assessment of power systems
Reactive power aspects in reliability assessment of power systems
 
Design of a mode decoupling facts device for voltage control of wind driven i...
Design of a mode decoupling facts device for voltage control of wind driven i...Design of a mode decoupling facts device for voltage control of wind driven i...
Design of a mode decoupling facts device for voltage control of wind driven i...
 
A secure modification to hsiang shih’s scheme
A secure modification to hsiang shih’s schemeA secure modification to hsiang shih’s scheme
A secure modification to hsiang shih’s scheme
 
Development of back propagation neural network model to predict performance a...
Development of back propagation neural network model to predict performance a...Development of back propagation neural network model to predict performance a...
Development of back propagation neural network model to predict performance a...
 

Semelhante a Training the neural network using levenberg marquardt’s algorithm to optimize

Fpga implementation of optimal step size nlms algorithm and its performance a...
Fpga implementation of optimal step size nlms algorithm and its performance a...Fpga implementation of optimal step size nlms algorithm and its performance a...
Fpga implementation of optimal step size nlms algorithm and its performance a...eSAT Publishing House
 
Fpga implementation of optimal step size nlms algorithm and its performance a...
Fpga implementation of optimal step size nlms algorithm and its performance a...Fpga implementation of optimal step size nlms algorithm and its performance a...
Fpga implementation of optimal step size nlms algorithm and its performance a...eSAT Journals
 
Economic Dispatch of Generated Power Using Modified Lambda-Iteration Method
Economic Dispatch of Generated Power Using Modified Lambda-Iteration MethodEconomic Dispatch of Generated Power Using Modified Lambda-Iteration Method
Economic Dispatch of Generated Power Using Modified Lambda-Iteration MethodIOSR Journals
 
HYBRID PARTICLE SWARM OPTIMIZATION FOR SOLVING MULTI-AREA ECONOMIC DISPATCH P...
HYBRID PARTICLE SWARM OPTIMIZATION FOR SOLVING MULTI-AREA ECONOMIC DISPATCH P...HYBRID PARTICLE SWARM OPTIMIZATION FOR SOLVING MULTI-AREA ECONOMIC DISPATCH P...
HYBRID PARTICLE SWARM OPTIMIZATION FOR SOLVING MULTI-AREA ECONOMIC DISPATCH P...ijsc
 
Model predictive-fuzzy-control-of-air-ratio-for-automotive-engines
Model predictive-fuzzy-control-of-air-ratio-for-automotive-enginesModel predictive-fuzzy-control-of-air-ratio-for-automotive-engines
Model predictive-fuzzy-control-of-air-ratio-for-automotive-enginespace130557
 
Hybrid Particle Swarm Optimization for Solving Multi-Area Economic Dispatch P...
Hybrid Particle Swarm Optimization for Solving Multi-Area Economic Dispatch P...Hybrid Particle Swarm Optimization for Solving Multi-Area Economic Dispatch P...
Hybrid Particle Swarm Optimization for Solving Multi-Area Economic Dispatch P...ijsc
 
IRJET- Fuel Cost Reduction for Thermal Power Generator by using G.A, PSO, QPS...
IRJET- Fuel Cost Reduction for Thermal Power Generator by using G.A, PSO, QPS...IRJET- Fuel Cost Reduction for Thermal Power Generator by using G.A, PSO, QPS...
IRJET- Fuel Cost Reduction for Thermal Power Generator by using G.A, PSO, QPS...IRJET Journal
 
Backstepping Control for a Five-Phase Permanent Magnet Synchronous Motor Drive
Backstepping Control for a Five-Phase Permanent Magnet Synchronous Motor DriveBackstepping Control for a Five-Phase Permanent Magnet Synchronous Motor Drive
Backstepping Control for a Five-Phase Permanent Magnet Synchronous Motor DriveIJPEDS-IAES
 
Relevance of Particle Swarm Optimization Technique for the Solution of Econom...
Relevance of Particle Swarm Optimization Technique for the Solution of Econom...Relevance of Particle Swarm Optimization Technique for the Solution of Econom...
Relevance of Particle Swarm Optimization Technique for the Solution of Econom...IRJET Journal
 
An efficient hardware logarithm generator with modified quasi-symmetrical app...
An efficient hardware logarithm generator with modified quasi-symmetrical app...An efficient hardware logarithm generator with modified quasi-symmetrical app...
An efficient hardware logarithm generator with modified quasi-symmetrical app...IJECEIAES
 
IRJET - Design and Implementation of FFT using Compressor with XOR Gate Topology
IRJET - Design and Implementation of FFT using Compressor with XOR Gate TopologyIRJET - Design and Implementation of FFT using Compressor with XOR Gate Topology
IRJET - Design and Implementation of FFT using Compressor with XOR Gate TopologyIRJET Journal
 
Low complexity algorithm for updating the coefficients of adaptive 2
Low complexity algorithm for updating the coefficients of adaptive 2Low complexity algorithm for updating the coefficients of adaptive 2
Low complexity algorithm for updating the coefficients of adaptive 2IAEME Publication
 
PuShort Term Hydrothermal Scheduling using Evolutionary Programmingblished pa...
PuShort Term Hydrothermal Scheduling using Evolutionary Programmingblished pa...PuShort Term Hydrothermal Scheduling using Evolutionary Programmingblished pa...
PuShort Term Hydrothermal Scheduling using Evolutionary Programmingblished pa...Satyendra Singh
 
DESIGN OF DELAY COMPUTATION METHOD FOR CYCLOTOMIC FAST FOURIER TRANSFORM
DESIGN OF DELAY COMPUTATION METHOD FOR CYCLOTOMIC FAST FOURIER TRANSFORMDESIGN OF DELAY COMPUTATION METHOD FOR CYCLOTOMIC FAST FOURIER TRANSFORM
DESIGN OF DELAY COMPUTATION METHOD FOR CYCLOTOMIC FAST FOURIER TRANSFORMsipij
 
A0420105
A0420105A0420105
A0420105inventy
 
A0420105
A0420105A0420105
A0420105inventy
 
Memory Polynomial Based Adaptive Digital Predistorter
Memory Polynomial Based Adaptive Digital PredistorterMemory Polynomial Based Adaptive Digital Predistorter
Memory Polynomial Based Adaptive Digital PredistorterIJERA Editor
 
IRJET - Design of a Low Power Serial- Parallel Multiplier with Low Transition...
IRJET - Design of a Low Power Serial- Parallel Multiplier with Low Transition...IRJET - Design of a Low Power Serial- Parallel Multiplier with Low Transition...
IRJET - Design of a Low Power Serial- Parallel Multiplier with Low Transition...IRJET Journal
 
IRJET- A Study on Algorithms for FFT Computations
IRJET- A Study on Algorithms for FFT ComputationsIRJET- A Study on Algorithms for FFT Computations
IRJET- A Study on Algorithms for FFT ComputationsIRJET Journal
 

Semelhante a Training the neural network using levenberg marquardt’s algorithm to optimize (20)

Fpga implementation of optimal step size nlms algorithm and its performance a...
Fpga implementation of optimal step size nlms algorithm and its performance a...Fpga implementation of optimal step size nlms algorithm and its performance a...
Fpga implementation of optimal step size nlms algorithm and its performance a...
 
Fpga implementation of optimal step size nlms algorithm and its performance a...
Fpga implementation of optimal step size nlms algorithm and its performance a...Fpga implementation of optimal step size nlms algorithm and its performance a...
Fpga implementation of optimal step size nlms algorithm and its performance a...
 
Economic Dispatch of Generated Power Using Modified Lambda-Iteration Method
Economic Dispatch of Generated Power Using Modified Lambda-Iteration MethodEconomic Dispatch of Generated Power Using Modified Lambda-Iteration Method
Economic Dispatch of Generated Power Using Modified Lambda-Iteration Method
 
HYBRID PARTICLE SWARM OPTIMIZATION FOR SOLVING MULTI-AREA ECONOMIC DISPATCH P...
HYBRID PARTICLE SWARM OPTIMIZATION FOR SOLVING MULTI-AREA ECONOMIC DISPATCH P...HYBRID PARTICLE SWARM OPTIMIZATION FOR SOLVING MULTI-AREA ECONOMIC DISPATCH P...
HYBRID PARTICLE SWARM OPTIMIZATION FOR SOLVING MULTI-AREA ECONOMIC DISPATCH P...
 
Model predictive-fuzzy-control-of-air-ratio-for-automotive-engines
Model predictive-fuzzy-control-of-air-ratio-for-automotive-enginesModel predictive-fuzzy-control-of-air-ratio-for-automotive-engines
Model predictive-fuzzy-control-of-air-ratio-for-automotive-engines
 
Hybrid Particle Swarm Optimization for Solving Multi-Area Economic Dispatch P...
Hybrid Particle Swarm Optimization for Solving Multi-Area Economic Dispatch P...Hybrid Particle Swarm Optimization for Solving Multi-Area Economic Dispatch P...
Hybrid Particle Swarm Optimization for Solving Multi-Area Economic Dispatch P...
 
IRJET- Fuel Cost Reduction for Thermal Power Generator by using G.A, PSO, QPS...
IRJET- Fuel Cost Reduction for Thermal Power Generator by using G.A, PSO, QPS...IRJET- Fuel Cost Reduction for Thermal Power Generator by using G.A, PSO, QPS...
IRJET- Fuel Cost Reduction for Thermal Power Generator by using G.A, PSO, QPS...
 
Backstepping Control for a Five-Phase Permanent Magnet Synchronous Motor Drive
Backstepping Control for a Five-Phase Permanent Magnet Synchronous Motor DriveBackstepping Control for a Five-Phase Permanent Magnet Synchronous Motor Drive
Backstepping Control for a Five-Phase Permanent Magnet Synchronous Motor Drive
 
Relevance of Particle Swarm Optimization Technique for the Solution of Econom...
Relevance of Particle Swarm Optimization Technique for the Solution of Econom...Relevance of Particle Swarm Optimization Technique for the Solution of Econom...
Relevance of Particle Swarm Optimization Technique for the Solution of Econom...
 
An efficient hardware logarithm generator with modified quasi-symmetrical app...
An efficient hardware logarithm generator with modified quasi-symmetrical app...An efficient hardware logarithm generator with modified quasi-symmetrical app...
An efficient hardware logarithm generator with modified quasi-symmetrical app...
 
IRJET - Design and Implementation of FFT using Compressor with XOR Gate Topology
IRJET - Design and Implementation of FFT using Compressor with XOR Gate TopologyIRJET - Design and Implementation of FFT using Compressor with XOR Gate Topology
IRJET - Design and Implementation of FFT using Compressor with XOR Gate Topology
 
Matrix multiplication
Matrix multiplicationMatrix multiplication
Matrix multiplication
 
Low complexity algorithm for updating the coefficients of adaptive 2
Low complexity algorithm for updating the coefficients of adaptive 2Low complexity algorithm for updating the coefficients of adaptive 2
Low complexity algorithm for updating the coefficients of adaptive 2
 
PuShort Term Hydrothermal Scheduling using Evolutionary Programmingblished pa...
PuShort Term Hydrothermal Scheduling using Evolutionary Programmingblished pa...PuShort Term Hydrothermal Scheduling using Evolutionary Programmingblished pa...
PuShort Term Hydrothermal Scheduling using Evolutionary Programmingblished pa...
 
DESIGN OF DELAY COMPUTATION METHOD FOR CYCLOTOMIC FAST FOURIER TRANSFORM
DESIGN OF DELAY COMPUTATION METHOD FOR CYCLOTOMIC FAST FOURIER TRANSFORMDESIGN OF DELAY COMPUTATION METHOD FOR CYCLOTOMIC FAST FOURIER TRANSFORM
DESIGN OF DELAY COMPUTATION METHOD FOR CYCLOTOMIC FAST FOURIER TRANSFORM
 
A0420105
A0420105A0420105
A0420105
 
A0420105
A0420105A0420105
A0420105
 
Memory Polynomial Based Adaptive Digital Predistorter
Memory Polynomial Based Adaptive Digital PredistorterMemory Polynomial Based Adaptive Digital Predistorter
Memory Polynomial Based Adaptive Digital Predistorter
 
IRJET - Design of a Low Power Serial- Parallel Multiplier with Low Transition...
IRJET - Design of a Low Power Serial- Parallel Multiplier with Low Transition...IRJET - Design of a Low Power Serial- Parallel Multiplier with Low Transition...
IRJET - Design of a Low Power Serial- Parallel Multiplier with Low Transition...
 
IRJET- A Study on Algorithms for FFT Computations
IRJET- A Study on Algorithms for FFT ComputationsIRJET- A Study on Algorithms for FFT Computations
IRJET- A Study on Algorithms for FFT Computations
 

Mais de IAEME Publication

IAEME_Publication_Call_for_Paper_September_2022.pdf
IAEME_Publication_Call_for_Paper_September_2022.pdfIAEME_Publication_Call_for_Paper_September_2022.pdf
IAEME_Publication_Call_for_Paper_September_2022.pdfIAEME Publication
 
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...IAEME Publication
 
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURS
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURSA STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURS
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURSIAEME Publication
 
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURS
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURSBROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURS
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURSIAEME Publication
 
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONS
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONSDETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONS
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONSIAEME Publication
 
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONS
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONSANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONS
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONSIAEME Publication
 
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINO
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINOVOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINO
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINOIAEME Publication
 
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...IAEME Publication
 
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMY
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMYVISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMY
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMYIAEME Publication
 
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...IAEME Publication
 
GANDHI ON NON-VIOLENT POLICE
GANDHI ON NON-VIOLENT POLICEGANDHI ON NON-VIOLENT POLICE
GANDHI ON NON-VIOLENT POLICEIAEME Publication
 
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...IAEME Publication
 
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...IAEME Publication
 
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...IAEME Publication
 
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...IAEME Publication
 
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...IAEME Publication
 
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...IAEME Publication
 
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...IAEME Publication
 
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...IAEME Publication
 
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENT
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENTA MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENT
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENTIAEME Publication
 

Mais de IAEME Publication (20)

IAEME_Publication_Call_for_Paper_September_2022.pdf
IAEME_Publication_Call_for_Paper_September_2022.pdfIAEME_Publication_Call_for_Paper_September_2022.pdf
IAEME_Publication_Call_for_Paper_September_2022.pdf
 
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...
 
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURS
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURSA STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURS
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURS
 
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURS
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURSBROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURS
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURS
 
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONS
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONSDETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONS
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONS
 
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONS
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONSANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONS
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONS
 
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINO
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINOVOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINO
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINO
 
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...
 
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMY
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMYVISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMY
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMY
 
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...
 
GANDHI ON NON-VIOLENT POLICE
GANDHI ON NON-VIOLENT POLICEGANDHI ON NON-VIOLENT POLICE
GANDHI ON NON-VIOLENT POLICE
 
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...
 
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...
 
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...
 
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...
 
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...
 
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...
 
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...
 
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...
 
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENT
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENTA MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENT
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENT
 

Último

🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdflior mazor
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024The Digital Insurer
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfhans926745
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 

Último (20)

🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 

Training the neural network using levenberg marquardt’s algorithm to optimize

  • 1. International Journal of Advanced Research in Engineering and Technology (IJARET), ISSN 0976 – 6480(Print), ISSN 0976 – 6499(Online) Volume 4, Issue 3, April (2013), © IAEME 93 TRAINING THE NEURAL NETWORK USING LEVENBERG-MARQUARDT’S ALGORITHM TO OPTIMIZE THE EVACUATION TIME IN AN AUTOMOTIVE VACUUM PUMP Vijayashree1 *, Kolla Bhanu Prakash2 and T.V. Ananthan3 1, 2, 3 Department of Computer Science and Engineering, Dr. MGR Educational and Research Institute University, Maduravoyal, Chennai 600 095, India ABSTRACT Neural networks have been used for engine computations in the recent past. One reason for using neural networks is to capture the accuracy of experimental data while saving computational time, so that system simulations can be performed within a reasonable time frame. The main aim of this study is to optimize and arrive at a design base for a vacuum pump in an automotive engine using Levenberg-Marquardt’s (LM) Algorithm for Artificial Neural Networking (ANN). Design bases are created based on the previous products and by bench marking. Effortless application of brake is a preferred comfort feature in automotive application. To provide an easy and effective feeling, the braking mechanism needs to be assisted with external energy. This is optimized based on LM algorithm using the neural network to arrive at the optimum evacuation time.. Index Terms: automotive engine, braking system, evacuation time, Levenberg-Marquardt’s (LM) Algorithm, neural networks, vacuum pump. I. INTRODUCTION Effortless application of brake is a preferred comfort feature in automotive application. To provide an easy and effective feeling, the braking mechanism needs to be assisted with external energy. Vane type Vacuum pump exactly serves this purpose, which is used to produce vacuum by evacuating the air in the vacuum booster. This vacuum is used to actuate the booster for the power brakes in the diesel-powered and Gasoline Direct Injection automobile. The capacity of the vacuum pump varies based on the weight and brake booster capacity of the vehicle. Therefore, it is necessary to have a design base with a proven technique, which will serve as a basis for faster product development. Neural networks and other machine learning algorithms are increasingly being used for engine applications [1]. These applications can be categorized as either real time control/diagnostic methods INTERNATIONAL JOURNAL OF ADVANCED RESEARCH IN ENGINEERING AND TECHNOLOGY (IJARET) ISSN 0976 - 6480 (Print) ISSN 0976 - 6499 (Online) Volume 4, Issue 3, April 2013, pp. 93-100 © IAEME: www.iaeme.com/ijaret.asp Journal Impact Factor (2013): 5.8376 (Calculated by GISI) www.jifactor.com IJARET © I A E M E
  • 2. International Journal of Advanced Research in Engineering and Technology (IJARET), ISSN 0976 – 6480(Print), ISSN 0976 – 6499(Online) Volume 4, Issue 3, April (2013), © IAEME 94 or predictive tools for design purposes. Some applications have even moved downstream of the engine [2]. The present work aims to use neutral network technique using LM algorithm to arrive at the appropriate evacuation time which is a critical parameter. The particular task selected is to minimize the evacuation time in a vane type vacuum pump. The dataset used are the experimental results conducted at UCAL Fuel Systems Ltd. Chennai. II. VACUUM PUMP Vane type vacuum pump has a unique profile in which an eccentrically mounted rotor rotates the vane as shown in the Fig.1. The movement of vanes creates pressure difference, which creates vacuum in brake booster. Air enters the pump through inlet check valve assembly. Oil is circulated inside the pump to lubricate the rotating parts and to maintain sealing between the high pressure and low pressure regions [3, 4, 5]. The air and oil mixture are then expelled outside the pump through the reed valve. The performance of the pump is specified by evacuation time of a specified tank volume [3]. Evacuation time, t = (Vt / Q ) / ln (p1 / p2) Where Vt is tank volume; p1 is atmospheric pressure and p2 is required pressure. Vane type vacuum pump is used to produce vacuum by evacuating the air in the vacuum booster. This vacuum is used to actuate the booster for the power brakes in the diesel-powered and GDI automobile. The capacity of the vacuum pump varies based on the weight and brake booster capacity of the vehicle. Therefore, it is necessary to have a design base with a proven technique, which will serve as a basis for faster product development. These results obtained from the existing pump were used for training the ANN using LM algorithm to create the design base for any future design. Figure 1 shows the vacuum pump of capacity 110cc . Fig.1 Photograph of vacuum pump of capacity 110cc III. LEVENBERG-MARQUARDT’S ALGORITHM The LM algorithm is an iterative technique that locates a local minimum of a multivariate function that is expressed as the sum of squares of several non-linear, real-valued functions. It has become a standard technique for nonlinear least-squares problems, widely adopted in various disciplines for dealing with data-fitting applications. LM can be thought of as a combination of steepest descent and the Gauss-Newton method. When the current solution is far from a local minimum, the algorithm behaves like a steepest descent method: slow, but guaranteed to converge. When the current solution is close to a local minimum, it becomes a Gauss-Newton method and exhibits fast convergence. Input: A vector function f : Rm → Rn with n ≥ m, a measurement vector x ∈∈∈∈ Rn and an initial parameters estimate p0 ∈∈∈∈ Rm .
  • 3. International Journal of Advanced Research in Engineering and Technology (IJARET), ISSN 0976 – 6480(Print), ISSN 0976 – 6499(Online) Volume 4, Issue 3, April (2013), © IAEME 95 Output: A vector p+ ∈∈∈∈ Rm minimizing ||x – f(p) ||2 Algorithm: k := 0; v := 2; p := p0; A := JT J; ∈∈∈∈P := x – f(p); g := JT ∈∈∈∈P; stop := (||g||∞ ≤ ∈∈∈∈1); µ := τ * maxi=1, …, m (Aii); while (not stop) and (k < kmax) k := k + 1; repeat Solve (A + µI) δP = g; if (||δP ||≤ ∈∈∈∈2 ||p||) stop := true; else pnew := p + δP; ρ := (||∈∈∈∈P ||2 − ||x – f(pnew)||2 ) / ( T Pδ (µδP + g)); if ρ > 0 p = pnew; A := JT J; ∈∈∈∈P := x – f(p); g := JT ∈∈∈∈P; stop := (||g||∞ ≤ ∈∈∈∈1); µ := µ * max(1/3, 1 – (2ρ – 1)3 ); v := 2; else µ := µ * v; v := 2 * v; endif endif until (ρ > 0) or (stop) endwhile p+ := p; The above is Levenberg-Marquardt nonlinear least squares algorithm. ρis the gain ratio, defined by the ratio of the actual reduction in the error (||∈∈∈∈P ||2 ) that corresponds to a step δP and the reduction predicted for δP by the linear model of Eq. (1). See text and [6,7] for details. When LM is applied to the problem, the operation enclosed in the rectangular box is carried out by taking into account the sparse structure of the corresponding Hessian matrix A. In the following, vectors and arrays appear in boldface and T is used to denote transposition. Also, ||.|| and ||.||∞ respectively denote the 2 and infinity norms. Let f be an assumed functional relation which maps a parameter vector p ∈∈∈∈ Rm to an estimated measurement vector x = f(p), x ∈∈∈∈ Rn . An initial parameter estimate p0 and a measured vector x are provided and it is desired to find the vector p+ that best satisfies the functional relation f locally, i.e. minimizes the squared distance ∈∈∈∈T ∈∈∈∈ with ∈∈∈∈ = x - x for all p within a sphere having a certain, small radius. The basis of the LM algorithm is a linear approximation to f in the neighborhood of p. Denoting by J the Jacobian matrix p p ∂ ∂ )(f , a Taylor series expansion for a small ||δP|| leads to the following approximation f (p + δP ) ≈ f (p) + J δP (1) Like all non-linear optimization methods, LM is iterative. Initiated at the starting point p0, it produces a series of vectors p1, p2, … that converge towards a local minimize p+ for f. Hence, at each iteration, it is required to find the step δP that minimizes the quantity ||x −−−− f (p + δP ) || ≈ ||x −−−− f (p) − J δP || = ||∈∈∈∈−−−− J δP|| (2)
  • 4. International Journal of Advanced Research in Engineering and Technology (IJARET), ISSN 0976 – 6480(Print), ISSN 0976 – 6499(Online) Volume 4, Issue 3, April (2013), © IAEME 96 The sought δP is thus the solution to a linear least-squares problem: the minimum is attained when J δP −−−− ∈∈∈∈ is orthogonal to the column space of J. This leads to JT (J δP −−−− ∈∈∈∈) = 0, which yields the Gauss-Newton step δP; as the solution of the so-called normal equations: JT J δP = JT ∈∈∈∈ (3) Ignoring the second derivative terms, matrix JT J in Eq.(3) approximates the Hessian of ½∈∈∈∈T ∈∈∈∈ [18]. Note also that JT ∈∈∈∈ is along the steepest descent direction, since the gradient of ½∈∈∈∈T ∈∈∈∈ is −JT ∈∈∈∈. The LM method actually solves a slight variation of Eq. (3), known as the augmented normal equations: N δP = JT ∈∈∈∈, with N ≡≡≡≡ JT J + µI and µ > 0 (4) Where I is the identity matrix. The strategy of altering the diagonal elements of JT J is called damping and µ is referred to as the damping term. If the updated parameter vector p +δP with δP computed from Eq. (4) leads to a reduction in the error ∈∈∈∈T ∈∈∈∈, the update is accepted and the process repeats with a decreased damping term. Otherwise, the damping term is increased, the augmented normal equations are solved again and the process iterates until a value of δP that decreases the error is found. The process of repeatedly solving Eq. (4) for different values of the damping term until an acceptable update to the parameter vector is found corresponds to one iteration of the LM algorithm. In LM, the damping term is adjusted at each iteration to assure a reduction in the error. If the damping is set to a large value, matrix N in Eq. (4) is nearly diagonal and the LM update step δP is near the steepest descent direction JT ∈∈∈∈. Moreover, the magnitude of δP is reduced in this case, ensuring that excessively large Gauss-Newton steps are not taken. Damping also handles situations where the Jacobian is rank deficient and JT J is therefore singular [4]. The damping term can be chosen so that matrix N in Eq. (4) is nonsingular and, therefore, positive definite, thus ensuring that the δP computed from it is in a descent direction. In this way, LM can defensively navigate a region of the parameter space in which the model is highly nonlinear. If the damping is small, the LM step approximates the exact Gauss-Newton step. LM is adaptive because it controls its own damping: it raises the damping if a step fails to reduce ∈∈∈∈T ∈∈∈∈ otherwise it reduces the damping. By doing so, LM is capable of alternating between a slow descent approach when being far from the minimum and a fast, quadratic convergence when being at the minimum’s neighborhood [8]. The LM algorithm terminates when at least one of the following conditions is met: 1. The gradient’s magnitude drops below a threshold ε1. 2. The relative change in the magnitude of δP drops below a threshold ε2. 3. A maximum number of iterations kmax is reached. The complete LM algorithm is shown in the above pseudocode; more details regarding it can be found in [6]. The initial damping factor is chosen equal to the product of a parameter τ with the maximum element of JT J in the main diagonal. Indicative values for the user-defined parameters are τ = 10−3 , ε1 = ε2 = 10−2 , kmax = 100. IV. METHODOLOGY OF NEURAL NETWORKS IN VACUUM PUMP PERFORMANCE OPTIMIZATION The performance of the vacuum pump is determined by time required to evacuate air from the reservoir. This function depends on the various parameters like temperature, oil pressure, rotation speed etc. The vacuum pump development requires the procedure to develop the pump of any capacity based on the customer requirement. In this first training stage, the inputs and the desired outputs are given to the NN. The weights are modified to minimize the error between the NN predictions and expected outputs. Different types of learning algorithms have been developed, but the most common and robust one is back-propagation. The goal of the training is to minimize the error, and consequently to optimize the NN solution. Each iterative step in which the weights are recalculated is called epoch. When the minimum is achieved, the weights are fixed and the training process ends. Once a neural network has been trained to a satisfactory
  • 5. International Journal of Advanced Research in Engineering and Technology (IJARET), ISSN 0976 – 6480(Print), ISSN 0976 – 6499(Online) Volume 4, Issue 3, April (2013), © IAEME 97 level, it may be used as a predictive tool for new data. To do this, only the inputs are given to the NN, and the NN predicted outputs are calculated using the previous error minimizing weights. V. RESULTS AND DISCUSSION The dataset used was obtained from UCAL Fuel Systems Ltd, Chennai. There were 4 sets of training data, each set corresponding to a different combination of pump and tank capacity, speed, pressure and evacuation time. There were 21x6 training data points and 4 input features. The target values were the 21x6 normalized (by the minimum possible evacuation time) values. There were 10 such sets for testing too. No tuning set was required to be extracted from the training data, since because of the large number of training data points, the training error as well as tune error decreased asymptotically, beyond a few hundred epochs, and early stopping did not occur. The MATLAB neural network toolbox was used to build the baseline neural networks. The Levenberg-Marquardt algorithm [9, 10] was used with the back propagation algorithm. Twenty five hidden layers with an optimal 10 neurons having sigmoid activation function, and the output layer having a ten neuron with a linear activation function was the chosen configuration. The Nguyen-Widow method was used to initialize the weights. Evacuation time predictions were made using this configuration (baseline case). The reasons to incorporate a physical model into a neural network are: 1. To make the network more robust. Even if confronted with a set of conditions very different from those encountered in the training data, the network should output realistic results. 2. To reduce dependence on training data, i.e. to enable the network to form a reasonable hypothesis, from small datasets. 3. To improve the prediction accuracy. Table 1 Experimental data for tank capacity 100 cc and pump capacity 3 cc. Temperature Speed 400 1000 1500 2300 50 3.47 1.97 1.7 1.61 90 3.53 1.98 1.8 1.7 120 3.92 2.08 1.8 1.75 150 4.77 2.16 1.17 1.72 Table 2 ANN result for tank capacity 100 cc and pump capacity 3 cc (hidden layers: 25) Temperature Evacuation time Speed 400 1000 1500 2300 50 3.47912 1.7302 1.9189 1.60273 90 3.53071 1.98974 1.32223 1.67414 120 3.90548 2.18308 0.84523 1.73175 150 4.90085 1.78111 2.24074 1.67527 The reported error is the mean square error over normalized evacuation time values. It is always the test error, unless otherwise mentioned. It was noticed from error plots that most of the error occurred
  • 6. International Journal of Advanced Research in Engineering and Technology (IJARET), ISSN 0976 – 6480(Print), ISSN 0976 – 6499(Online) Volume 4, Issue 3, April (2013), © IAEME 98 over the -0.2396 region (Fig.2). The other regions had much smaller errors and this error were therefore chosen for comparison with the three new methods. Fig.2 Error histogram The mean square error of the model output to the target output is a typical measure of neural network performance. However, it was found that there are practical difficulties in establishing acceptance criteria for the mean square error. Therefore a normalised version of the mean square error was implemented. This normalised mean square error used the nearer specification limit concept that was modified to encompass the definition of an acceptable percentage error level. Here, the acceptable error was equated to the typical level of propagated error that one would expect from the instrumentation measuring the engine performance. This was consistent with the idea that it is reasonable not to expect a higher standard of inference using the model than one could expect from direct measurement of the engine performance. The performance obtained during the training are Performance = 0.1601 trainPerformance = 8.4504e-008 valPerformance = 0.4123 testPerformance = 0.2283 During training, the progress is constantly updated in the training window. Of most interest are the performance, the magnitude of the gradient of performance and the number of validation checks. The magnitude of the gradient and the number of validation checks are used to terminate the training. The gradient will become very small as the training reaches a minimum of the performance. If the magnitude of the gradient is less than 1e-5, the training will stop (Fig.3). This limit can be adjusted by setting the parameter net.trainParam.min_grad. The number of validation checks represents the number of successive iterations that the validation performance fails to decrease. If this number reaches 6 (the default value), the training will stop.
  • 7. International Journal of Advanced Research in Engineering and Technology (IJARET), ISSN 0976 – 6480(Print), ISSN 0976 – 6499(Online) Volume 4, Issue 3, April (2013), © IAEME 99 Fig.3 Gradient plot The performance plot (Fig.4) shows the value of the performance function versus the iteration number (epochs). It plots training, validation and test performances. The best validation performance is 0.17081 at epoch1. Fig.4 Performance plot The training state plot shows the progress of other training variables, such as the gradient magnitude, the number of validation checks, etc (Fig.5). The error histogram plot shows the distribution of the network errors. The regression plot shows a regression between network outputs and network targets. Fig.5 Training regeression plots The three axes represent the training, validation and testing data. The dashed line in each axis represents the perfect result – outputs = targets. The solid line represents the best fit linear regression line between outputs and targets. The R value is an indication of the relationship between the outputs and targets. If R = 1, this indicates that there is an exact linear relationship between outputs and targets.
  • 8. International Journal of Advanced Research in Engineering and Technology (IJARET), ISSN 0976 – 6480(Print), ISSN 0976 – 6499(Online) Volume 4, Issue 3, April (2013), © IAEME 100 If R is close to zero, then there is no linear relationship between outputs and targets. For this example, the training data indicates a good fit. The validation and test results also show R values that greater than 0.9. The scatter plot is helpful in showing that certain data points have poor fits. Here in this R at training, validation, test and with all the three are 0.083294, 0.13655, 0.80023 and 0.080557 respectively. VI. CONCLUSION From the results obtained from the above Levenberg-Marquardt’s algorithm, it can be concluded that the above algorithm works quite satisfactorily in optimizing the evacuation time in automotive engines. The above optimization has been validated and found to be accurate to 5% level. The deviation of NN optimized values were also found within 5%, when compared with experimental results. VII. ACKNOWLEDGEMENT I wish to acknowledge Mr. J. Suresh Kumar, Deputy General Manager of UCAL Fuel Systems Ltd, Chennai for his help in conducting the experiments and generating the data set to do this project and validate the same in their prototype. REFERENCES [1] Indranil Brahma, Yongsheng He and Christopher J. Rutland, Improvement of Neural Network Accuracy for Engine Simulations, SAE Paper 2003-01-3227 [2] He, Y. and Rutland, C.J., “Application of Artificial Neural Network for Integration of Advanced Engine Simulation Methods”, Proceedings of the 2000 Fall Technical Conference of the ASME Internal Combustion Engine Division, ICE-Vol.35-1, 53-64, Paper No. 2000-ICE-304, 2000 [3] Chambers, A., Fitch, R. K., Halliday, B. S., “Basic Vacuum Technology,” ISBN 0-75-030495-2, 1998. [4] Nagendiran, S., Sivanantham, R., and Kumar, J.,“Improvement of the Performance of Cam-Operated Vacuum Pump for Multi Jet Diesel Engine,” SAE Technical Paper 2009-01-1462, 2009, doi:10.4271/2009-01-1462. [5] Nagendiran S R, Arun Subramanian, J Suresh kumar and Ramalingam Sivanantham Designing of Automotive Vacuum Pumps - Development of Mathematical Model for Critical Parameters and Optimization using Artificial Neural Networks, SAE Paper No.2012-01-0779K. Madsen, H. Nielsen, and O. Tingleff. Methods for Non-Linear Least Squares Problems. Technical University of Denmark, 2004. Lecture notes, available at http://www.imm.dtu.dk/courses/02611/nllsq.pdf. [6] Manolis I.A. Lourakis and Antonis A. Argyros, Is Levenberg-Marquardt the Most Efficient Optimization Algorithm for Implementing Bundle Adjustment? Proceedings of the Tenth IEEE International Conference on Computer Vision (ICCV’05), IEEE Computer Society [7] J. Dennis and R. Schnabel. Numerical Methods for Unconstrained Optimization and Nonlinear Equations. Classics in Applied Mathematics. SIAM Publications, Philadelphia, 1996. [8] Indranil Brahma, Yongsheng He and Christopher J. Rutland, Improvement of Neural Network Accuracy for Engine Simulations SAE Paper 2003-01-3227 [9] Hagan, M.T. and Menjaj, M.B., “Training Feedforward Networks with the Marquardt Algorithm”, IEEE Transactions on Neural Networks, Vol. 5, No. 6, pp.989-993, 1994. [10] Pallavi.H.Agarwal, Prof.Dr.P.M.George and Prof.Dr.L.M.Manocha, “Comparison Of Neural Network Models On Material Removal Rate Of C-Sic” International Journal Of Design And Manufacturing Technology (IJDMT) Volume 3, Issue 1, 2012, pp. 1 – 10, ISSN Print: 0976 – 6995, ISSN Online: 0976 – 7002 [11] Dharmendra Kumar Singh, Dr.Moushmi Kar And Dr.A.S.Zadgaonkar, “Analysis Of Generated Harmonics Due To Transformer Load On Power System Using Artificial Neural Network” International Journal of Electrical Engineering & Technology (IJEET) Volume 4, Issue 1, 2013, pp. 81 – 90, ISSN PRINT: 0976-6545, ISSN ONLINE: 0976-6553.