SlideShare a Scribd company logo
1 of 6
Download to read offline
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 04 Issue: 07 | July -2017 www.irjet.net p-ISSN: 2395-0072
© 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 494
Jaya with Experienced Learning
Prasenjit Baruah1
UG-Student,Dept.ofProduction Engineering,N.I.T Tiruchirapalli,Tiruchirapalli,India
---------------------------------------------------------------------***---------------------------------------------------------------------
Abstract -Jaya Algorithm has emerged as a simple but the
most effective approach in the field of engineering
optimization and beyond. Unlike the conventional heuristic
algorithms like PSO, GA, etc, it doesn't require any algorithm
specific parameters. A modified version of the Jaya
Algorithm has been proposed in this paper that can be used
for solving constrained and unconstrained problems. Jaya
tried to learn only from the 'best and the 'worst' of the
candidate solutions. Such combination is expected to have
biasness and may result local optimal. In order to avoid this,
it is proposed in the modified Jaya to seek additional
guidance from one each from the top and the bottom most
10% candidate solutions when endeavoring to look for
improvement in subsequent iterations. The performance of
the proposed algorithm is observed by implementing it on 5
test functions having different characteristics and the
results obtained show much better results as compared to
that from existing Jaya Algorithm.
Key Words: Optimisation, Jaya, Evolutionary Approaches,
Endeavouring, Iterations.
1. INTRODUCTION
Optimization is basically seeking for the best or most
effective use of a resource. In the field of Engineering,
various optimization techniques have been employed to
solve real life problems like cost reduction, scheduling, etc.
The population based heuristic algorithms have two
approaches: Evolutionary and Swarm Intelligence. As this
paper deals with the modification of recently evolved
random search algorithm 'Jaya', the concepts involved in
the predecessors like TLBO, PSO, GA, etc have contributed
greatly to understand the origin of the same.
PSO:- This Algorithm is based on the behavior of a flock of
birds searching for food in a particular search space. These
particles(i.e. candidates solutions) are moved around in
the search space as per some formula. They are guided by
their respective best solution in the search space(i.e. pbest)
as well as the entire swarm's best known position(i.e.
gbest). Thus it takes both its own solution and the leader's
solution(i.e. most experienced) into account while
searching for the optimal solution.
TLBO:- With the advent of TLBO, a parameter less
optimization approach which gained great acceptance
among the researchers, people started analyzing natural
phenomenon to improve the random search and
optimization techniques. TLBO replicates the events
taking place inside a classroom. It consists of 2 phases -
The Teacher Phase and The Learner's Phase. What
happens in a classroom is the students(i.e. learners) gain
knowledge in two ways! Either from what he has been
taught by the teacher or by the mutual interaction with his
fellow mates. Now the Teacher, being the most learned is
considered as the 'best' solution. However, the learning
capacity of every individual may be different. After gaining
knowledge from the 'best', the students get themselves
involve in group discussions where they interact with
others and try to improve their knowledge.
JAYA:- It is a new random search optimization algorithm
which is similar to TLBO in terms of consideration of
parameters. But unlike TLBO, it has only one phase in
which the solutions are moved towards the best by
avoiding the worst. The success of this algorithm is due to
the fact that it takes the worst solution into account while
trying to improve each solution. Owning to its victorious
nature, it has been named 'Jaya' which is a Sanskrit word
meaning victory.
JAYA WITH EXPERIENCED LEARNING:- The proposed
algorithm differs from the Jaya Algorithm in terms of the
fact that it takes the neighbors of the Best and the Worst
into consideration to make the search process more
flexible and ultimately reach the optimum result. The
immediate candidates to both the best and the worst act as
an effective medium to transfer experience from the
extremities(i.e. Best and Worst) to the rest. Unlike Jaya
where the flow of information is discrete, here the very
thing has been liquefied to ensure flow of more detailed
information.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 04 Issue: 07 | July -2017 www.irjet.net p-ISSN: 2395-0072
© 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 495
1.1 Model
Let's take the situation of occurrence of a natural calamity
like Earthquake. The population near the epicenter would
be the worst affected whereas the population far away
from it would be safe and least affected(i.e. Best). However,
the population in between these extremities will try to rush
to an immediate safer place in reaction to the trembling .So,
the concept of information flow must be continuous and
versatile. It is beneficial to take guidance from both the
individuals which are close to the Best and the Worst in
addition to the two(i.e. Best & Worst).
Blue Dots--No. of Candidates(say 20).
The encircled region shown in figure corresponds to Top
10% near Best and Bottom 10% near Worst.10% of 20 is
2,there are 2 candidates each in addition to the Best and
the Worst.
Now the remaining candidates between the two
extremities will try to rush out to an immediate better
place by taking guidance from anyone who are in the
encircled region following the equations-
(#)x' = x + rand(xtop - |x|) - rand(xbottom -
|x|).......towards top 10% and away from the bottom 10%
After taking guidance from the candidates within the
marked regions , we seek guidance from the Best and the
Worst as these are regarded as the most experienced to get
finer results.
2. PROPOSED ALGORITHM
Let f(x) is the objective function to be minimized(or
maximized). At any iteration i, assume that there are n
number of candidates (population size, i.e. (i.e. k=1,2,3,...,n)
) and m number of design variables (i.e. j=1,2,3,...,m). Let
the best candidate obtains the best value of objective
function(f(x)best) and the worst candidate obtains the
worst value of objective function(f(x)worst) in the entire
candidate solution. Rank each candidate according to the
objective function value. Obtain 10% of the population size
and extract the values near the Best and the Worst
solutions respectively. Select two random solutions each
among the Top 10% and the Bottom 10% and modify each
solution as per the following the equation:
x' = x + rand(xtop - |x|) - rand(xbottom - |x|).......towards top
10% and away from the bottom 10%.
where, xtop = randomly chosen number from top 10%,
xbottom = randomly chosen number from bottom 10%. x' is
the new value of x and rand is a random number in the
range[0 1]. The term "rand(xtop - |x|)" sets the direction of
the candidates' solutions towards the neighborhood of the
Best. Whereas the term "- rand(xbottom- |x|)" sets the
direction of the candidates' solutions away from the
neighborhood of the Worst.
Ultimately, the candidates would seek guidance from the
most experienced candidates that are the Best and the
Worst. Therefore, the candidate solutions in the previous
step are modified according to the Jaya equation which
allows already oriented solutions to refine and gain the
desired the result. The Jaya equation goes as follows :
x' = x + rand(xbest - |x|) - rand(xworst - |x|)
Fig.1 shows the flowchart of the proposed algorithm. The
algorithm always tries to get closer to success (i.e. reaching
the best solution) and tries to avoid failure (i.e. moving
away from the worst solution) gaining knowledge from the
neighborhood. The algorithm strives to become successful
by reaching the best solution in less number of iterations as
compared to its parent algorithm(i.e. Jaya Algorithm) and
hence it is modified. The proposed method is illustrated by
means of an unconstrained benchmark function known as
Sphere function in the next section.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 04 Issue: 07 | July -2017 www.irjet.net p-ISSN: 2395-0072
© 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 496
unconstrained benchmark function of Sphere is
considered. The objective function is to find out the values
of xi that minimize the value of the Sphere function.
min f(x)=∑xi2
subject to:
-100<x
i
<100
Since the objective function is to be minimized, thus the
minimum value of the given benchmark function is 0 for all
xi values of 0.Now to demonstrate the modified Jaya
algorithm, let us assume a population size of 20 (i.e.
candidate solutions), two design variables x and y and two
iterations as the termination criterion. The initial
population is randomly generated within the ranges of the
variables and the corresponding values of the objective
function are shown in Table 1. As it is a minimization
function, the lowest value of f(x) is considered as the best
solution and the highest value of f(x) is considered as the
worst solution.
Table -1: Initial Population
corresponding to Candidate 12 and the Worst solution is
corresponding to Candidate 15. As we know 10% of 20
candidates in 2 thus we obtain two solutions each near the
Best and near the Worst. Then we choose any random
number from each two solutions to get rough direction.
Rank 3- Candidate 16
Rank 18- Candidate 13
Now each value of x1 and x2 are modified so as to move
towards the Top 10%(neighborhood of Best) and away
from the Bottom 10%(neighborhood of Worst) according
to the equation
x' = x + rand*(x(top) - |x|) -rand*(x(bottom)-|x|)
Table 2:- Intermediate Values of x & y
Candidate X1 X2 f(x)
1) -1.13032 -11.0012 122.304
2) 1.6754 3.2095 13.107
3) -10.6589 -1.7176 116.562
4) -5.0974 1.098 27.189
5) 4.5655 -5.8762 55.373
6) 5.0714 -6.7306 71.020
7) -0.41 0.4715 0.390
8) -5.1839 4.5263 47.360
9) 2.6381 -9.8639 104.256
10) 5.1398 -10.5914 138.595
11) -2.7599 -14.6612 222.567
12) 1.2258 -1.5318 3.848
13) 7.5609 0.4371 57.358
14) -5.0043 -9.9355 123.757
15) -11.0092 -16.3155 387.195
16) 3.1478 -4.9816 34.724
17) 3.3089 -5.7573 44.095
18) -0.4448 -4.7152 22.430
19) -8.6951 -5.2508 103.175
20) 5.4819 -2.5033 36.317
Candidate X1 X2 f(x) Rank
1) -2 -8 68 13
2) 4 5 41 7
3) -9 0 81 17
4) -2 6 40 6
5) 8 -3 73 14
6) 6 -3 45 9
7) 0 7 49 11
8) -4 5 41 7
9) 5 -7 74 15
10) 8 -6 100 19
11) 1 -8 65 12
12) -1 -1 2 1
13) 8 5 89 18
14) -4 -8 80 16
15) -8 -9 145 20
16) 4 -1 17 3
17) 6 -3 45 9
18) 2 -1 5 2
19) -6 0 36 4
20) 6 1 37 5
From Table 1, it can be seen that the Best solution is
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 04 Issue: 07 | July -2017 www.irjet.net p-ISSN: 2395-0072
© 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 497
Table 3:- New values of the variables and the objective
function during first iteration by applying Jaya equation
Table 4:- Updated values of the variables and the objective
function based on fitness comparison at the end of first
iteration
Table 4 has been updated based on the fitness of the
Objective function by comparing the values among Table
1,2 &3. Thus, the Updated table has values from all the 3
tables depending on the goal(i.e. minimization or
maximization). It validates the fact that the candidates are
acquiring information from the neighborhood of the Best
and the worst too. In this way, it approaches the optimum
result by executing the required number of iterations.
2.2Approach
The working of the proposed algorithm has been found out
by comparing the results of the following four cases:
(1) Jaya Algorithm
(2) Jaya Algorithm + Top 10%(near the BestSol)
(3) Jaya Algorithm + Bottom 10%(near the WorstSol)
(4) Jaya Algorithm + Top 10% + Bottom 10%.
All the above mentioned algorithms have been coded in
Matlab and the outcomes are compared on the basis of
convergence rate and better results. For this purpose the
objective function is taken as the Sphere function and the
other parameters like range of design variables, max
iterations, etc are kept constant.
No. of Candidates: 20
Design Variables: 2
Max Iterations: 100
Lower Bound: -100
Upper Bound: 100
It is observed that the results of the first two cases are
almost similar(Fig(1) & Fig(2)). However, when a random
candidate solution from the neighborhood of the Worst is
Candidate X1 X2 f(x)
1) -3.1368 -5.7610 43.028
2) 8.6872 12.1429 222.917
3) -13.7594 3.3264 200.386
4) -1.9240 19.9074 400.006
5) 4.4683 -0.6958 20.449
6) 6.2774 -1.3923 41.344
7) 1.8268 14.2776 207.187
8) 0.3468 12.3851 153.510
9) 11.4634 -10.1755 234.950
10) 13.9739 -4.2168 213.051
11) -0.7326 -6.6909 45.304
12) 3.8758 2.8432 23.105
13) 8.1448 13.4868 248.231
14) -6.5320 0.3247 42.772
15) -9.0659 -2.7507 89.756
16) 13.8833 6.4337 234.138
17) 8.9978 5.5559 111.828
18) 0.4113 1.7064 3.080
19) 2.4192 4.8777 29.644
20) 9.4932 4.0549 106.563
Candidate X1 X2 f(x) Rank
1) -3.1368 -5.7610 43.028 13
2) 1.6754 3.2095 13.107 4
3) -9 0 81 18
4) -5.0974 1.098 27.189 7
5) 4.4683 -0.6958 20.449 6
6) 6.2774 -1.3923 41.344 11
7) -0.41 0.4715 0.390 1
8) -4 5 41 10
9) 5 -7 74 17
10) 8 -6 100 20
11) -0.7326 -6.6909 45.304 15
12) -1 -1 2 2
13) 7.5609 0.4371 57.358 16
14) -6.5320 0.3247 42.772 12
15) -9.0659 -2.7507 89.756 19
16) 4 -1 17 5
17) 3.3089 -5.7573 44.095 14
18) 0.4113 1.7064 3.080 3
19) 2.4192 4.8777 29.644 8
20) 5.4819 -2.5033 36.317 9
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 04 Issue: 07 | July -2017 www.irjet.net p-ISSN: 2395-0072
© 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 498
considered along with the normal Jaya, the results
converge towards the optimum in lesser iterations(Fig(3)
illustrates the Best Objective function value at 100th
iteration).Now in the 4th case, we combine both Top 10%
and the Bottom 10% along with normal Jaya
Algorithm(Refer Fig(4)). Even though the results of the 3rd
and 4th cases are almost comparable, it is always better to
seek information from both the side(i.e. the top & the
bottom).
Thus, the 4th case is retained for further study. The very
Algorithm is implemented on various unconstrained test
functions like Sphere, Matyas, Booth, etc and constrained
Himmelblau function.
Fig(1)- Jaya Algorithm :- Iteration 100: Best Obj = 1.7865e-
09
Fig(2)-Jaya Algorithm + Top 10%:- Iteration 100: Best Obj
= 8.1968e-11
Fig(3)-Jaya Algorithm + Bottom 10%:- Iteration 100: Best
Obj = 7.6219e-248
Fig(4)-Jaya Algorithm + Top 10% + Bottom 10%:-
Iteration 100: Best Obj = 6.0578e-249
3. CONCLUSIONS
This paper highlights the flexibility in information flow by
disregarding the biased culture(i.e. considering only the
best & the worst) which is being followed in the Jaya
Algorithm. However, by including random solutions from
the surrounding of the Best and the Worst, the number of
solutions generated in each iteration gets increased. But
there is a significant difference in the results obtained by
the modified Jaya(Refer Fig(5)). While the Jaya Algorithm
converges to around 10-10, the modified one converges to
around 10-249 for 100 iterations.
The proposed algorithm is implemented on 5 constrained
and 1 unconstrained functions . The results obtained by
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 04 Issue: 07 | July -2017 www.irjet.net p-ISSN: 2395-0072
© 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 499
the proposed algorithm are compared with the Jaya
Algorithm and it has shown satisfactory results for the
proposed algorithm.
Fig(5)- Jaya V/S Proposed algorithm.
The following table shows the results obtained by
implementing Jaya Algorithm on the below mentioned 5
test functions taking 100 iterations for every case.
ACKNOWLEDGEMENT
I would like to extend my heartfelt gratitude to Professor
Anil Kumar Agrawal, Mechanical Engineering Department,
Indian Institute of Technology (IIT-BHU) who expertly
guided me through my research work as a part of Summer
Internship, 2017.His generous behavior and constant
guidance helped me to enjoy learning during the work.
My humble appreciation also goes to my friends who stand
by me and support me in every small step I take towards
trying something new.
At last but not the least, I would love to mention my family
who unconditionally support me and let me build my
dreams come true.
REFERENCES
[1] Rao, R., 2015. Jaya: A simple and new optimization
algorithm for solving constrained and unconstrained
optimization problems. International Journal of Industrial
Engineering Computations, 7(1), pp.19-34.
[2] Rao, R.V., Savsani, V.J. and Vakharia, D.P., 2012.
Teaching–learning-based optimization: an optimization
method for continuous non-linear large scale problems.
Information Sciences, 183(1), pp.1-15.
[3] Rao, R.V., Savsani, V.J. and Vakharia, D.P., 2011.
Teaching–learning-based optimization: a novel method for
constrained mechanical design optimization problems.
Computer-Aided Design, 43(3), pp.303-315.
[4] Atul B. Patil M.Tech Student Department of Computer
Science and Engineering,2016,Bus driver scheduling
problem using Jaya Algorithm and Teaching Learning
Based Optimisation(TLBO) Techniques.
JAYA PROPOSED
Func X1 X2 Optim
um
X1 X2 Opti
mum
Sphere 9.53
06e-
06
-
1.58
73e-
05
3.427
8e-10
5.90
09e-
124
-
9.71
16e-
125
3.576
4e-
247
Booth 1.02
41
2.98
52
0.001
1
1.00
06
2.99
96
5.996
3e-07
Matyas -
0.00
36
-
0.00
32
4.972
6e-07
-
2.82
78e-
62
-
3.27
82e-
62
4.235
5e-
125
Three
hump
camel
functio
n
3.86
74e-
05
1.38
54e-
04
2.754
3e-08
4.25
28e-
125
-
4.27
85e-
124
1.684
7e-
247
Himmel
blau
3.59
35
-
1.86
81
0.008
9645
3.00
00
2.00
00
8.646
3e-08

More Related Content

What's hot

Branch and Bound technique to solve Integer Linear Programming
Branch and Bound technique to solve Integer Linear ProgrammingBranch and Bound technique to solve Integer Linear Programming
Branch and Bound technique to solve Integer Linear ProgrammingKaivalya Shah
 
Lecture: Introduction to Linear Programming for Natural Resource Economists a...
Lecture: Introduction to Linear Programming for Natural Resource Economists a...Lecture: Introduction to Linear Programming for Natural Resource Economists a...
Lecture: Introduction to Linear Programming for Natural Resource Economists a...Daniel Sandars
 
Logistic Regression | Logistic Regression In Python | Machine Learning Algori...
Logistic Regression | Logistic Regression In Python | Machine Learning Algori...Logistic Regression | Logistic Regression In Python | Machine Learning Algori...
Logistic Regression | Logistic Regression In Python | Machine Learning Algori...Simplilearn
 
LINEAR PROGRAMMING
LINEAR PROGRAMMINGLINEAR PROGRAMMING
LINEAR PROGRAMMINGrashi9
 
Simplex method concept,
Simplex method concept,Simplex method concept,
Simplex method concept,Dronak Sahu
 
Machine learning Lecture 1
Machine learning Lecture 1Machine learning Lecture 1
Machine learning Lecture 1Srinivasan R
 
Canonical form and Standard form of LPP
Canonical form and Standard form of LPPCanonical form and Standard form of LPP
Canonical form and Standard form of LPPSundar B N
 
Global optimization
Global optimizationGlobal optimization
Global optimizationbpenalver
 
Introduction to Supervised ML Concepts and Algorithms
Introduction to Supervised ML Concepts and AlgorithmsIntroduction to Supervised ML Concepts and Algorithms
Introduction to Supervised ML Concepts and AlgorithmsNBER
 
Linear algebra application in linear programming
Linear algebra application in linear programming Linear algebra application in linear programming
Linear algebra application in linear programming Lahiru Dilshan
 
Introduction to operations research
Introduction to operations researchIntroduction to operations research
Introduction to operations researchKamel Attar
 
Linear programming
Linear programming Linear programming
Linear programming sadha sivam
 
An Overview of Naïve Bayes Classifier
An Overview of Naïve Bayes Classifier An Overview of Naïve Bayes Classifier
An Overview of Naïve Bayes Classifier ananth
 
Lp and ip programming cp 9
Lp and ip programming cp 9Lp and ip programming cp 9
Lp and ip programming cp 9M S Prasad
 
High-Dimensional Methods: Examples for Inference on Structural Effects
High-Dimensional Methods: Examples for Inference on Structural EffectsHigh-Dimensional Methods: Examples for Inference on Structural Effects
High-Dimensional Methods: Examples for Inference on Structural EffectsNBER
 
Linear Programming (graphical method)
Linear Programming (graphical method)Linear Programming (graphical method)
Linear Programming (graphical method)Kamel Attar
 

What's hot (20)

Branch and Bound technique to solve Integer Linear Programming
Branch and Bound technique to solve Integer Linear ProgrammingBranch and Bound technique to solve Integer Linear Programming
Branch and Bound technique to solve Integer Linear Programming
 
Operations Research
Operations ResearchOperations Research
Operations Research
 
Lecture: Introduction to Linear Programming for Natural Resource Economists a...
Lecture: Introduction to Linear Programming for Natural Resource Economists a...Lecture: Introduction to Linear Programming for Natural Resource Economists a...
Lecture: Introduction to Linear Programming for Natural Resource Economists a...
 
Ati course contents
Ati course contentsAti course contents
Ati course contents
 
Logistic Regression | Logistic Regression In Python | Machine Learning Algori...
Logistic Regression | Logistic Regression In Python | Machine Learning Algori...Logistic Regression | Logistic Regression In Python | Machine Learning Algori...
Logistic Regression | Logistic Regression In Python | Machine Learning Algori...
 
LINEAR PROGRAMMING
LINEAR PROGRAMMINGLINEAR PROGRAMMING
LINEAR PROGRAMMING
 
Simplex method concept,
Simplex method concept,Simplex method concept,
Simplex method concept,
 
Machine learning Lecture 1
Machine learning Lecture 1Machine learning Lecture 1
Machine learning Lecture 1
 
Canonical form and Standard form of LPP
Canonical form and Standard form of LPPCanonical form and Standard form of LPP
Canonical form and Standard form of LPP
 
Global optimization
Global optimizationGlobal optimization
Global optimization
 
Introduction to Supervised ML Concepts and Algorithms
Introduction to Supervised ML Concepts and AlgorithmsIntroduction to Supervised ML Concepts and Algorithms
Introduction to Supervised ML Concepts and Algorithms
 
Linear algebra application in linear programming
Linear algebra application in linear programming Linear algebra application in linear programming
Linear algebra application in linear programming
 
Introduction to operations research
Introduction to operations researchIntroduction to operations research
Introduction to operations research
 
AI Algorithms
AI AlgorithmsAI Algorithms
AI Algorithms
 
Machine Learning
Machine LearningMachine Learning
Machine Learning
 
Linear programming
Linear programming Linear programming
Linear programming
 
An Overview of Naïve Bayes Classifier
An Overview of Naïve Bayes Classifier An Overview of Naïve Bayes Classifier
An Overview of Naïve Bayes Classifier
 
Lp and ip programming cp 9
Lp and ip programming cp 9Lp and ip programming cp 9
Lp and ip programming cp 9
 
High-Dimensional Methods: Examples for Inference on Structural Effects
High-Dimensional Methods: Examples for Inference on Structural EffectsHigh-Dimensional Methods: Examples for Inference on Structural Effects
High-Dimensional Methods: Examples for Inference on Structural Effects
 
Linear Programming (graphical method)
Linear Programming (graphical method)Linear Programming (graphical method)
Linear Programming (graphical method)
 

Similar to Jaya with Experienced Learning

The Evaluation of Topsis and Fuzzy-Topsis Method for Decision Making System i...
The Evaluation of Topsis and Fuzzy-Topsis Method for Decision Making System i...The Evaluation of Topsis and Fuzzy-Topsis Method for Decision Making System i...
The Evaluation of Topsis and Fuzzy-Topsis Method for Decision Making System i...IRJET Journal
 
Selecting Best Tractor Ranking Wise by Software using MADM(Multiple –Attribut...
Selecting Best Tractor Ranking Wise by Software using MADM(Multiple –Attribut...Selecting Best Tractor Ranking Wise by Software using MADM(Multiple –Attribut...
Selecting Best Tractor Ranking Wise by Software using MADM(Multiple –Attribut...IRJET Journal
 
Updated paper in latex(1)
Updated paper in latex(1)Updated paper in latex(1)
Updated paper in latex(1)Richa Shukla
 
Deep Reinforcement Learning Through Policy Optimization, John Schulman, OpenAI
Deep Reinforcement Learning Through Policy Optimization, John Schulman, OpenAIDeep Reinforcement Learning Through Policy Optimization, John Schulman, OpenAI
Deep Reinforcement Learning Through Policy Optimization, John Schulman, OpenAIJack Clark
 
AMSFLO: Optimization Based Efficient Approach for Association Rule Mining
AMSFLO: Optimization Based Efficient Approach for Association Rule MiningAMSFLO: Optimization Based Efficient Approach for Association Rule Mining
AMSFLO: Optimization Based Efficient Approach for Association Rule MiningIJCSIS Research Publications
 
Quantitativetechniqueformanagerialdecisionlinearprogramming 090725035417-phpa...
Quantitativetechniqueformanagerialdecisionlinearprogramming 090725035417-phpa...Quantitativetechniqueformanagerialdecisionlinearprogramming 090725035417-phpa...
Quantitativetechniqueformanagerialdecisionlinearprogramming 090725035417-phpa...kongara
 
Assignment oprations research luv
Assignment oprations research luvAssignment oprations research luv
Assignment oprations research luvAshok Sharma
 
MOCANAR: A Multi-Objective Cuckoo Search Algorithm for Numeric Association Ru...
MOCANAR: A Multi-Objective Cuckoo Search Algorithm for Numeric Association Ru...MOCANAR: A Multi-Objective Cuckoo Search Algorithm for Numeric Association Ru...
MOCANAR: A Multi-Objective Cuckoo Search Algorithm for Numeric Association Ru...csandit
 
MOCANAR: A MULTI-OBJECTIVE CUCKOO SEARCH ALGORITHM FOR NUMERIC ASSOCIATION RU...
MOCANAR: A MULTI-OBJECTIVE CUCKOO SEARCH ALGORITHM FOR NUMERIC ASSOCIATION RU...MOCANAR: A MULTI-OBJECTIVE CUCKOO SEARCH ALGORITHM FOR NUMERIC ASSOCIATION RU...
MOCANAR: A MULTI-OBJECTIVE CUCKOO SEARCH ALGORITHM FOR NUMERIC ASSOCIATION RU...cscpconf
 
Cuckoo Search: Recent Advances and Applications
Cuckoo Search: Recent Advances and ApplicationsCuckoo Search: Recent Advances and Applications
Cuckoo Search: Recent Advances and ApplicationsXin-She Yang
 
Transportation Problem with Pentagonal Intuitionistic Fuzzy Numbers Solved Us...
Transportation Problem with Pentagonal Intuitionistic Fuzzy Numbers Solved Us...Transportation Problem with Pentagonal Intuitionistic Fuzzy Numbers Solved Us...
Transportation Problem with Pentagonal Intuitionistic Fuzzy Numbers Solved Us...IJERA Editor
 
Finding the Extreme Values with some Application of Derivatives
Finding the Extreme Values with some Application of DerivativesFinding the Extreme Values with some Application of Derivatives
Finding the Extreme Values with some Application of Derivativesijtsrd
 
An Automatic Medical Image Segmentation using Teaching Learning Based Optimiz...
An Automatic Medical Image Segmentation using Teaching Learning Based Optimiz...An Automatic Medical Image Segmentation using Teaching Learning Based Optimiz...
An Automatic Medical Image Segmentation using Teaching Learning Based Optimiz...idescitation
 
Solving Multidimensional Multiple Choice Knapsack Problem By Genetic Algorith...
Solving Multidimensional Multiple Choice Knapsack Problem By Genetic Algorith...Solving Multidimensional Multiple Choice Knapsack Problem By Genetic Algorith...
Solving Multidimensional Multiple Choice Knapsack Problem By Genetic Algorith...Shubhashis Shil
 
A NEW APPROACH IN DYNAMIC TRAVELING SALESMAN PROBLEM: A HYBRID OF ANT COLONY ...
A NEW APPROACH IN DYNAMIC TRAVELING SALESMAN PROBLEM: A HYBRID OF ANT COLONY ...A NEW APPROACH IN DYNAMIC TRAVELING SALESMAN PROBLEM: A HYBRID OF ANT COLONY ...
A NEW APPROACH IN DYNAMIC TRAVELING SALESMAN PROBLEM: A HYBRID OF ANT COLONY ...ijmpict
 
An efficient use of temporal difference technique in Computer Game Learning
An efficient use of temporal difference technique in Computer Game LearningAn efficient use of temporal difference technique in Computer Game Learning
An efficient use of temporal difference technique in Computer Game LearningPrabhu Kumar
 

Similar to Jaya with Experienced Learning (20)

The Evaluation of Topsis and Fuzzy-Topsis Method for Decision Making System i...
The Evaluation of Topsis and Fuzzy-Topsis Method for Decision Making System i...The Evaluation of Topsis and Fuzzy-Topsis Method for Decision Making System i...
The Evaluation of Topsis and Fuzzy-Topsis Method for Decision Making System i...
 
Selecting Best Tractor Ranking Wise by Software using MADM(Multiple –Attribut...
Selecting Best Tractor Ranking Wise by Software using MADM(Multiple –Attribut...Selecting Best Tractor Ranking Wise by Software using MADM(Multiple –Attribut...
Selecting Best Tractor Ranking Wise by Software using MADM(Multiple –Attribut...
 
Updated paper in latex(1)
Updated paper in latex(1)Updated paper in latex(1)
Updated paper in latex(1)
 
Ds33717725
Ds33717725Ds33717725
Ds33717725
 
Ds33717725
Ds33717725Ds33717725
Ds33717725
 
Deep Reinforcement Learning Through Policy Optimization, John Schulman, OpenAI
Deep Reinforcement Learning Through Policy Optimization, John Schulman, OpenAIDeep Reinforcement Learning Through Policy Optimization, John Schulman, OpenAI
Deep Reinforcement Learning Through Policy Optimization, John Schulman, OpenAI
 
AMSFLO: Optimization Based Efficient Approach for Association Rule Mining
AMSFLO: Optimization Based Efficient Approach for Association Rule MiningAMSFLO: Optimization Based Efficient Approach for Association Rule Mining
AMSFLO: Optimization Based Efficient Approach for Association Rule Mining
 
Linear Programming
Linear ProgrammingLinear Programming
Linear Programming
 
Quantitativetechniqueformanagerialdecisionlinearprogramming 090725035417-phpa...
Quantitativetechniqueformanagerialdecisionlinearprogramming 090725035417-phpa...Quantitativetechniqueformanagerialdecisionlinearprogramming 090725035417-phpa...
Quantitativetechniqueformanagerialdecisionlinearprogramming 090725035417-phpa...
 
Assignment oprations research luv
Assignment oprations research luvAssignment oprations research luv
Assignment oprations research luv
 
LPP.pptx
LPP.pptxLPP.pptx
LPP.pptx
 
MOCANAR: A Multi-Objective Cuckoo Search Algorithm for Numeric Association Ru...
MOCANAR: A Multi-Objective Cuckoo Search Algorithm for Numeric Association Ru...MOCANAR: A Multi-Objective Cuckoo Search Algorithm for Numeric Association Ru...
MOCANAR: A Multi-Objective Cuckoo Search Algorithm for Numeric Association Ru...
 
MOCANAR: A MULTI-OBJECTIVE CUCKOO SEARCH ALGORITHM FOR NUMERIC ASSOCIATION RU...
MOCANAR: A MULTI-OBJECTIVE CUCKOO SEARCH ALGORITHM FOR NUMERIC ASSOCIATION RU...MOCANAR: A MULTI-OBJECTIVE CUCKOO SEARCH ALGORITHM FOR NUMERIC ASSOCIATION RU...
MOCANAR: A MULTI-OBJECTIVE CUCKOO SEARCH ALGORITHM FOR NUMERIC ASSOCIATION RU...
 
Cuckoo Search: Recent Advances and Applications
Cuckoo Search: Recent Advances and ApplicationsCuckoo Search: Recent Advances and Applications
Cuckoo Search: Recent Advances and Applications
 
Transportation Problem with Pentagonal Intuitionistic Fuzzy Numbers Solved Us...
Transportation Problem with Pentagonal Intuitionistic Fuzzy Numbers Solved Us...Transportation Problem with Pentagonal Intuitionistic Fuzzy Numbers Solved Us...
Transportation Problem with Pentagonal Intuitionistic Fuzzy Numbers Solved Us...
 
Finding the Extreme Values with some Application of Derivatives
Finding the Extreme Values with some Application of DerivativesFinding the Extreme Values with some Application of Derivatives
Finding the Extreme Values with some Application of Derivatives
 
An Automatic Medical Image Segmentation using Teaching Learning Based Optimiz...
An Automatic Medical Image Segmentation using Teaching Learning Based Optimiz...An Automatic Medical Image Segmentation using Teaching Learning Based Optimiz...
An Automatic Medical Image Segmentation using Teaching Learning Based Optimiz...
 
Solving Multidimensional Multiple Choice Knapsack Problem By Genetic Algorith...
Solving Multidimensional Multiple Choice Knapsack Problem By Genetic Algorith...Solving Multidimensional Multiple Choice Knapsack Problem By Genetic Algorith...
Solving Multidimensional Multiple Choice Knapsack Problem By Genetic Algorith...
 
A NEW APPROACH IN DYNAMIC TRAVELING SALESMAN PROBLEM: A HYBRID OF ANT COLONY ...
A NEW APPROACH IN DYNAMIC TRAVELING SALESMAN PROBLEM: A HYBRID OF ANT COLONY ...A NEW APPROACH IN DYNAMIC TRAVELING SALESMAN PROBLEM: A HYBRID OF ANT COLONY ...
A NEW APPROACH IN DYNAMIC TRAVELING SALESMAN PROBLEM: A HYBRID OF ANT COLONY ...
 
An efficient use of temporal difference technique in Computer Game Learning
An efficient use of temporal difference technique in Computer Game LearningAn efficient use of temporal difference technique in Computer Game Learning
An efficient use of temporal difference technique in Computer Game Learning
 

More from IRJET Journal

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...IRJET Journal
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTUREIRJET Journal
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...IRJET Journal
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsIRJET Journal
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...IRJET Journal
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...IRJET Journal
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...IRJET Journal
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...IRJET Journal
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASIRJET Journal
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...IRJET Journal
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProIRJET Journal
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...IRJET Journal
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemIRJET Journal
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesIRJET Journal
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web applicationIRJET Journal
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...IRJET Journal
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.IRJET Journal
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...IRJET Journal
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignIRJET Journal
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...IRJET Journal
 

More from IRJET Journal (20)

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil Characteristics
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADAS
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare System
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridges
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web application
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
 

Recently uploaded

IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...RajaP95
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...Soham Mondal
 
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINESIVASHANKAR N
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...Call Girls in Nagpur High Profile
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escortsranjana rawat
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxupamatechverse
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxpranjaldaimarysona
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSKurinjimalarL3
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxJoão Esperancinha
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Dr.Costas Sachpazis
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escortsranjana rawat
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxAsutosh Ranjan
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Dr.Costas Sachpazis
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 

Recently uploaded (20)

IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
 
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
 
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptx
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptx
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
 
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCRCall Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptx
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 

Jaya with Experienced Learning

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 04 Issue: 07 | July -2017 www.irjet.net p-ISSN: 2395-0072 © 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 494 Jaya with Experienced Learning Prasenjit Baruah1 UG-Student,Dept.ofProduction Engineering,N.I.T Tiruchirapalli,Tiruchirapalli,India ---------------------------------------------------------------------***--------------------------------------------------------------------- Abstract -Jaya Algorithm has emerged as a simple but the most effective approach in the field of engineering optimization and beyond. Unlike the conventional heuristic algorithms like PSO, GA, etc, it doesn't require any algorithm specific parameters. A modified version of the Jaya Algorithm has been proposed in this paper that can be used for solving constrained and unconstrained problems. Jaya tried to learn only from the 'best and the 'worst' of the candidate solutions. Such combination is expected to have biasness and may result local optimal. In order to avoid this, it is proposed in the modified Jaya to seek additional guidance from one each from the top and the bottom most 10% candidate solutions when endeavoring to look for improvement in subsequent iterations. The performance of the proposed algorithm is observed by implementing it on 5 test functions having different characteristics and the results obtained show much better results as compared to that from existing Jaya Algorithm. Key Words: Optimisation, Jaya, Evolutionary Approaches, Endeavouring, Iterations. 1. INTRODUCTION Optimization is basically seeking for the best or most effective use of a resource. In the field of Engineering, various optimization techniques have been employed to solve real life problems like cost reduction, scheduling, etc. The population based heuristic algorithms have two approaches: Evolutionary and Swarm Intelligence. As this paper deals with the modification of recently evolved random search algorithm 'Jaya', the concepts involved in the predecessors like TLBO, PSO, GA, etc have contributed greatly to understand the origin of the same. PSO:- This Algorithm is based on the behavior of a flock of birds searching for food in a particular search space. These particles(i.e. candidates solutions) are moved around in the search space as per some formula. They are guided by their respective best solution in the search space(i.e. pbest) as well as the entire swarm's best known position(i.e. gbest). Thus it takes both its own solution and the leader's solution(i.e. most experienced) into account while searching for the optimal solution. TLBO:- With the advent of TLBO, a parameter less optimization approach which gained great acceptance among the researchers, people started analyzing natural phenomenon to improve the random search and optimization techniques. TLBO replicates the events taking place inside a classroom. It consists of 2 phases - The Teacher Phase and The Learner's Phase. What happens in a classroom is the students(i.e. learners) gain knowledge in two ways! Either from what he has been taught by the teacher or by the mutual interaction with his fellow mates. Now the Teacher, being the most learned is considered as the 'best' solution. However, the learning capacity of every individual may be different. After gaining knowledge from the 'best', the students get themselves involve in group discussions where they interact with others and try to improve their knowledge. JAYA:- It is a new random search optimization algorithm which is similar to TLBO in terms of consideration of parameters. But unlike TLBO, it has only one phase in which the solutions are moved towards the best by avoiding the worst. The success of this algorithm is due to the fact that it takes the worst solution into account while trying to improve each solution. Owning to its victorious nature, it has been named 'Jaya' which is a Sanskrit word meaning victory. JAYA WITH EXPERIENCED LEARNING:- The proposed algorithm differs from the Jaya Algorithm in terms of the fact that it takes the neighbors of the Best and the Worst into consideration to make the search process more flexible and ultimately reach the optimum result. The immediate candidates to both the best and the worst act as an effective medium to transfer experience from the extremities(i.e. Best and Worst) to the rest. Unlike Jaya where the flow of information is discrete, here the very thing has been liquefied to ensure flow of more detailed information.
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 04 Issue: 07 | July -2017 www.irjet.net p-ISSN: 2395-0072 © 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 495 1.1 Model Let's take the situation of occurrence of a natural calamity like Earthquake. The population near the epicenter would be the worst affected whereas the population far away from it would be safe and least affected(i.e. Best). However, the population in between these extremities will try to rush to an immediate safer place in reaction to the trembling .So, the concept of information flow must be continuous and versatile. It is beneficial to take guidance from both the individuals which are close to the Best and the Worst in addition to the two(i.e. Best & Worst). Blue Dots--No. of Candidates(say 20). The encircled region shown in figure corresponds to Top 10% near Best and Bottom 10% near Worst.10% of 20 is 2,there are 2 candidates each in addition to the Best and the Worst. Now the remaining candidates between the two extremities will try to rush out to an immediate better place by taking guidance from anyone who are in the encircled region following the equations- (#)x' = x + rand(xtop - |x|) - rand(xbottom - |x|).......towards top 10% and away from the bottom 10% After taking guidance from the candidates within the marked regions , we seek guidance from the Best and the Worst as these are regarded as the most experienced to get finer results. 2. PROPOSED ALGORITHM Let f(x) is the objective function to be minimized(or maximized). At any iteration i, assume that there are n number of candidates (population size, i.e. (i.e. k=1,2,3,...,n) ) and m number of design variables (i.e. j=1,2,3,...,m). Let the best candidate obtains the best value of objective function(f(x)best) and the worst candidate obtains the worst value of objective function(f(x)worst) in the entire candidate solution. Rank each candidate according to the objective function value. Obtain 10% of the population size and extract the values near the Best and the Worst solutions respectively. Select two random solutions each among the Top 10% and the Bottom 10% and modify each solution as per the following the equation: x' = x + rand(xtop - |x|) - rand(xbottom - |x|).......towards top 10% and away from the bottom 10%. where, xtop = randomly chosen number from top 10%, xbottom = randomly chosen number from bottom 10%. x' is the new value of x and rand is a random number in the range[0 1]. The term "rand(xtop - |x|)" sets the direction of the candidates' solutions towards the neighborhood of the Best. Whereas the term "- rand(xbottom- |x|)" sets the direction of the candidates' solutions away from the neighborhood of the Worst. Ultimately, the candidates would seek guidance from the most experienced candidates that are the Best and the Worst. Therefore, the candidate solutions in the previous step are modified according to the Jaya equation which allows already oriented solutions to refine and gain the desired the result. The Jaya equation goes as follows : x' = x + rand(xbest - |x|) - rand(xworst - |x|) Fig.1 shows the flowchart of the proposed algorithm. The algorithm always tries to get closer to success (i.e. reaching the best solution) and tries to avoid failure (i.e. moving away from the worst solution) gaining knowledge from the neighborhood. The algorithm strives to become successful by reaching the best solution in less number of iterations as compared to its parent algorithm(i.e. Jaya Algorithm) and hence it is modified. The proposed method is illustrated by means of an unconstrained benchmark function known as Sphere function in the next section.
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 04 Issue: 07 | July -2017 www.irjet.net p-ISSN: 2395-0072 © 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 496 unconstrained benchmark function of Sphere is considered. The objective function is to find out the values of xi that minimize the value of the Sphere function. min f(x)=∑xi2 subject to: -100<x i <100 Since the objective function is to be minimized, thus the minimum value of the given benchmark function is 0 for all xi values of 0.Now to demonstrate the modified Jaya algorithm, let us assume a population size of 20 (i.e. candidate solutions), two design variables x and y and two iterations as the termination criterion. The initial population is randomly generated within the ranges of the variables and the corresponding values of the objective function are shown in Table 1. As it is a minimization function, the lowest value of f(x) is considered as the best solution and the highest value of f(x) is considered as the worst solution. Table -1: Initial Population corresponding to Candidate 12 and the Worst solution is corresponding to Candidate 15. As we know 10% of 20 candidates in 2 thus we obtain two solutions each near the Best and near the Worst. Then we choose any random number from each two solutions to get rough direction. Rank 3- Candidate 16 Rank 18- Candidate 13 Now each value of x1 and x2 are modified so as to move towards the Top 10%(neighborhood of Best) and away from the Bottom 10%(neighborhood of Worst) according to the equation x' = x + rand*(x(top) - |x|) -rand*(x(bottom)-|x|) Table 2:- Intermediate Values of x & y Candidate X1 X2 f(x) 1) -1.13032 -11.0012 122.304 2) 1.6754 3.2095 13.107 3) -10.6589 -1.7176 116.562 4) -5.0974 1.098 27.189 5) 4.5655 -5.8762 55.373 6) 5.0714 -6.7306 71.020 7) -0.41 0.4715 0.390 8) -5.1839 4.5263 47.360 9) 2.6381 -9.8639 104.256 10) 5.1398 -10.5914 138.595 11) -2.7599 -14.6612 222.567 12) 1.2258 -1.5318 3.848 13) 7.5609 0.4371 57.358 14) -5.0043 -9.9355 123.757 15) -11.0092 -16.3155 387.195 16) 3.1478 -4.9816 34.724 17) 3.3089 -5.7573 44.095 18) -0.4448 -4.7152 22.430 19) -8.6951 -5.2508 103.175 20) 5.4819 -2.5033 36.317 Candidate X1 X2 f(x) Rank 1) -2 -8 68 13 2) 4 5 41 7 3) -9 0 81 17 4) -2 6 40 6 5) 8 -3 73 14 6) 6 -3 45 9 7) 0 7 49 11 8) -4 5 41 7 9) 5 -7 74 15 10) 8 -6 100 19 11) 1 -8 65 12 12) -1 -1 2 1 13) 8 5 89 18 14) -4 -8 80 16 15) -8 -9 145 20 16) 4 -1 17 3 17) 6 -3 45 9 18) 2 -1 5 2 19) -6 0 36 4 20) 6 1 37 5 From Table 1, it can be seen that the Best solution is
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 04 Issue: 07 | July -2017 www.irjet.net p-ISSN: 2395-0072 © 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 497 Table 3:- New values of the variables and the objective function during first iteration by applying Jaya equation Table 4:- Updated values of the variables and the objective function based on fitness comparison at the end of first iteration Table 4 has been updated based on the fitness of the Objective function by comparing the values among Table 1,2 &3. Thus, the Updated table has values from all the 3 tables depending on the goal(i.e. minimization or maximization). It validates the fact that the candidates are acquiring information from the neighborhood of the Best and the worst too. In this way, it approaches the optimum result by executing the required number of iterations. 2.2Approach The working of the proposed algorithm has been found out by comparing the results of the following four cases: (1) Jaya Algorithm (2) Jaya Algorithm + Top 10%(near the BestSol) (3) Jaya Algorithm + Bottom 10%(near the WorstSol) (4) Jaya Algorithm + Top 10% + Bottom 10%. All the above mentioned algorithms have been coded in Matlab and the outcomes are compared on the basis of convergence rate and better results. For this purpose the objective function is taken as the Sphere function and the other parameters like range of design variables, max iterations, etc are kept constant. No. of Candidates: 20 Design Variables: 2 Max Iterations: 100 Lower Bound: -100 Upper Bound: 100 It is observed that the results of the first two cases are almost similar(Fig(1) & Fig(2)). However, when a random candidate solution from the neighborhood of the Worst is Candidate X1 X2 f(x) 1) -3.1368 -5.7610 43.028 2) 8.6872 12.1429 222.917 3) -13.7594 3.3264 200.386 4) -1.9240 19.9074 400.006 5) 4.4683 -0.6958 20.449 6) 6.2774 -1.3923 41.344 7) 1.8268 14.2776 207.187 8) 0.3468 12.3851 153.510 9) 11.4634 -10.1755 234.950 10) 13.9739 -4.2168 213.051 11) -0.7326 -6.6909 45.304 12) 3.8758 2.8432 23.105 13) 8.1448 13.4868 248.231 14) -6.5320 0.3247 42.772 15) -9.0659 -2.7507 89.756 16) 13.8833 6.4337 234.138 17) 8.9978 5.5559 111.828 18) 0.4113 1.7064 3.080 19) 2.4192 4.8777 29.644 20) 9.4932 4.0549 106.563 Candidate X1 X2 f(x) Rank 1) -3.1368 -5.7610 43.028 13 2) 1.6754 3.2095 13.107 4 3) -9 0 81 18 4) -5.0974 1.098 27.189 7 5) 4.4683 -0.6958 20.449 6 6) 6.2774 -1.3923 41.344 11 7) -0.41 0.4715 0.390 1 8) -4 5 41 10 9) 5 -7 74 17 10) 8 -6 100 20 11) -0.7326 -6.6909 45.304 15 12) -1 -1 2 2 13) 7.5609 0.4371 57.358 16 14) -6.5320 0.3247 42.772 12 15) -9.0659 -2.7507 89.756 19 16) 4 -1 17 5 17) 3.3089 -5.7573 44.095 14 18) 0.4113 1.7064 3.080 3 19) 2.4192 4.8777 29.644 8 20) 5.4819 -2.5033 36.317 9
  • 5. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 04 Issue: 07 | July -2017 www.irjet.net p-ISSN: 2395-0072 © 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 498 considered along with the normal Jaya, the results converge towards the optimum in lesser iterations(Fig(3) illustrates the Best Objective function value at 100th iteration).Now in the 4th case, we combine both Top 10% and the Bottom 10% along with normal Jaya Algorithm(Refer Fig(4)). Even though the results of the 3rd and 4th cases are almost comparable, it is always better to seek information from both the side(i.e. the top & the bottom). Thus, the 4th case is retained for further study. The very Algorithm is implemented on various unconstrained test functions like Sphere, Matyas, Booth, etc and constrained Himmelblau function. Fig(1)- Jaya Algorithm :- Iteration 100: Best Obj = 1.7865e- 09 Fig(2)-Jaya Algorithm + Top 10%:- Iteration 100: Best Obj = 8.1968e-11 Fig(3)-Jaya Algorithm + Bottom 10%:- Iteration 100: Best Obj = 7.6219e-248 Fig(4)-Jaya Algorithm + Top 10% + Bottom 10%:- Iteration 100: Best Obj = 6.0578e-249 3. CONCLUSIONS This paper highlights the flexibility in information flow by disregarding the biased culture(i.e. considering only the best & the worst) which is being followed in the Jaya Algorithm. However, by including random solutions from the surrounding of the Best and the Worst, the number of solutions generated in each iteration gets increased. But there is a significant difference in the results obtained by the modified Jaya(Refer Fig(5)). While the Jaya Algorithm converges to around 10-10, the modified one converges to around 10-249 for 100 iterations. The proposed algorithm is implemented on 5 constrained and 1 unconstrained functions . The results obtained by
  • 6. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 04 Issue: 07 | July -2017 www.irjet.net p-ISSN: 2395-0072 © 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 499 the proposed algorithm are compared with the Jaya Algorithm and it has shown satisfactory results for the proposed algorithm. Fig(5)- Jaya V/S Proposed algorithm. The following table shows the results obtained by implementing Jaya Algorithm on the below mentioned 5 test functions taking 100 iterations for every case. ACKNOWLEDGEMENT I would like to extend my heartfelt gratitude to Professor Anil Kumar Agrawal, Mechanical Engineering Department, Indian Institute of Technology (IIT-BHU) who expertly guided me through my research work as a part of Summer Internship, 2017.His generous behavior and constant guidance helped me to enjoy learning during the work. My humble appreciation also goes to my friends who stand by me and support me in every small step I take towards trying something new. At last but not the least, I would love to mention my family who unconditionally support me and let me build my dreams come true. REFERENCES [1] Rao, R., 2015. Jaya: A simple and new optimization algorithm for solving constrained and unconstrained optimization problems. International Journal of Industrial Engineering Computations, 7(1), pp.19-34. [2] Rao, R.V., Savsani, V.J. and Vakharia, D.P., 2012. Teaching–learning-based optimization: an optimization method for continuous non-linear large scale problems. Information Sciences, 183(1), pp.1-15. [3] Rao, R.V., Savsani, V.J. and Vakharia, D.P., 2011. Teaching–learning-based optimization: a novel method for constrained mechanical design optimization problems. Computer-Aided Design, 43(3), pp.303-315. [4] Atul B. Patil M.Tech Student Department of Computer Science and Engineering,2016,Bus driver scheduling problem using Jaya Algorithm and Teaching Learning Based Optimisation(TLBO) Techniques. JAYA PROPOSED Func X1 X2 Optim um X1 X2 Opti mum Sphere 9.53 06e- 06 - 1.58 73e- 05 3.427 8e-10 5.90 09e- 124 - 9.71 16e- 125 3.576 4e- 247 Booth 1.02 41 2.98 52 0.001 1 1.00 06 2.99 96 5.996 3e-07 Matyas - 0.00 36 - 0.00 32 4.972 6e-07 - 2.82 78e- 62 - 3.27 82e- 62 4.235 5e- 125 Three hump camel functio n 3.86 74e- 05 1.38 54e- 04 2.754 3e-08 4.25 28e- 125 - 4.27 85e- 124 1.684 7e- 247 Himmel blau 3.59 35 - 1.86 81 0.008 9645 3.00 00 2.00 00 8.646 3e-08