SlideShare a Scribd company logo
1 of 9
Download to read offline
International Journal of Artificial Intelligence and Applications (IJAIA), Vol. 7, No. 3, May 2016
DOI: 10.5121/ijaia.2016.7301 1
GENETIC ALGORITHM FOR FUNCTION
APPROXIMATION: AN EXPERIMENTAL
INVESTIGATION
Abdulrahman Baqais1
1
Department of Information and Computer Science, KFUPM, Dhahran, Saudi Arabia
ABSTRACT
Function Approximation is a popular engineering problems used in system identification or Equation
optimization. Due to the complex search space it requires, AI techniques has been used extensively to spot
the best curves that match the real behavior of the system. Genetic algorithm is known for their fast
convergence and their ability to find an optimal structure of the solution. We propose using a genetic
algorithm as a function approximator. Our attempt will focus on using the polynomial form of the
approximation. After implementing the algorithm, we are going to report our results and compare it with
the real function output.
KEYWORDS
Genetic Algorithm, Function Approximation, Experimentation
1. INTRODUCTION
Function approximation is used in science and engineering field in order to find the relationship
between two or more variables: the independent variable (x) and the dependent variable (y) [1-3].
In such situation, input-output pairs of any engineering or scientific problems are collected using
a suitable experiment or instrument. However, a direct relation in the form of equation canā€™t be
inferred between these pairs due to the absence of strong correlations.
To address this issue, Artificial Intelligence (AI) algorithms have been utilized to produce an
equation between input-output pairs with higher accuracy. Genetic algorithms have been
implemented in various articles with promising results as in [4-6].
2. LITERATURE REVIEW
Genetic algorithm is a metaheuristic algorithm that is designed by Holland in 1975 [7]. The
algorithm starts by providing a random population of points of the search space. At each
iteration, the algorithm applies some operators such as: crossover and mutation on the current
population and evaluate them using an objective (fitness) function. In Function approximation,
the objective function of each problem is to come up with an equation with higher accuracy
between input-output pairs. That is, the objective function is to reduce the errors of the equation.
Different error measurement can be used such as: Least Absolute Error (LAE), Mean Squared
Error (MSE) or residual sum of squares (RSS).
There are many studies that use different AI algorithms including GA to finding the function
approximation as in [4, 6].
International Journal of Artificial Intelligence and Applications (IJAIA), Vol. 7, No. 3, May 2016
2
In [8], a variant of neural network named Wavelet Neural Network was used to approximate the
function of pollution at Texas in USA. In [9, 10], the authors were able to provide an equation of
higher accuracy with few coefficients of real-world data problem concerning the seawater
density. The equation was generated using GA. Fuzzy Systems were used in [11] to approximate
nonlinear relations.
3. RESEARCH METHODOLOGY
In this paper, we are proposing using genetic algorithms for approximation of polynomial
functions. Genetic algorithms are known for their fast search for solution in a large complex
space. Basically, Genetic algorithms can effectively find an optimal approximated curve to any
mathematical equations with high accuracy. It should be noted that genetic algorithms requires a
deep understanding of the problem and a crafted design of the chromosome. The fitness function
must be chosen carefully to reflect the most contributable feature to the final solution. By
maximization of the fitness function in each generation, genetic algorithm will exhibit a schema
that converges to an optimal robust solution.
In the next section, we are going to explain the details of our program and experiment. The
rationale behind each decision in our experiment is explained in details with sound justifications.
Each step in setting up our experimental framework is written clearly with supporting figures. It
must be understood that the objective of this project is to design a specific genetic algorithm for
approximating polynomial function. Since this is an Artificial Intelligence course, our aim is to
give a deep analysis of the behavior of genetic algorithm and its parameters.
We used Matlab Toolbox to give us a quick access to various parameters of the genetic algorithm
such as selection, number of generation and for plotting purposes. However, the design of the
chromosome and the fitness function is coded to be adjusted to our problem.
In function approximation, the most feature of the solution is to have a high accuracy of the
obtained curve to the original equation. This implies very low errors in approximating each
point in relative to the actual point. So our fitness function will be minimization rather than
maximization. To ensure, that our fitness function is coded correctly, the errors must be
decreasing through the generations until a convergence or an optimal solution is found. Mean
squared error (MSE) was used as a fitness function and itā€™s defined:
MSE =
The population of our solutions is represented as binary bits. This gives us the flexibility we
need to manipulate the chromosome in a variety of ways as we are going to explain shortly.
Each chromosome (or individual) contains many terms where each term is composed of two
parts:
Coefficient
Power of the variable.
Each term is composed 15 bits, where 10 bits is allocated to coefficient and the remaining bits
are allocated to represent the power.
Now, for simplicity we will assume that all terms are polynomial functions since polynomial
functions are known to be a universal function approximator.
International Journal of Artificial Intelligence and Applications (IJAIA), Vol. 7, No. 3, May 2016
3
Another contribution of this paper lies in the range the power of each terms may have. In normal
regression approximation, the researcher is constrained to use only integer values in the power
part. However, using a resolution concept, we are allowing both the coefficient and the power to
have real values. The range of values that the coefficient and the power may take is depicted in
the Table 1.
Table 1: Range of Coefficient and Power Variables
Variable Resolution
Coefficient (Coefficient /10) ā€“ 50.4
Power (Power *0.25) - 4
le. Another aspect that needs to be considered is the probability of crossover and mutation and
the range of bits they are applied to. Crossover and mutation can be implemented in various
ways: either on the term boundary, on the part unit boundary or within the individual bits. Each
method has its merits and drawbacks based on the targeted problem. In this specific chromosome
design, we opt to play with the crossover and mutation within the bits themselves. This is done
for twofold: one all of our terms are in polynomial shape and hence targeting with the term
boundary will not help much in converging the solution. If our chromosome design exhibits other
function types such as trigonometric function, then targeting terms boundary may have better
results. The second reason is that manipulating individual bits increase the chances of finding
better solution. Even though, It may increases the complexity of the problem and the search
space to explore in general large problems, the simplicity of our problem that allocates only 15
bits to the term mitigate these issues and the extra time added will be negligible or of little
significance as we are going to show in the experiment sections.
We opt to represent our population of individuals as binary strings. That gives us the flexibility
to specify the range of the values of the coefficient and the powers. The following figure shows
the basic design of the chromosome:
The Fitness Function: where y refers to the real output and is the
approximated output.
The Final form of the polynomial equation will be on the form of:
A(x) = coefficent * X1
power
+ coefficient * X2
power
ā€¦ + coefficent * Xn
power
4. EXPERIMENTAL SETUP:
In the literature review, we explored different functions proposed by many authors as the target
equation. Some choose normal polynomial; others opt for Rastrigin functions due to its
suitability since it poses many local minimum points and some may prefer to run their
experiments approximating real equations from engineering domains. In this paper, we opt to
target polynomial functions of the form:
F(x) = x2
Where x ranges between 0.1 - 10.00 with an increasing step of 0.1.
Choosing the number of samples is very critical to be able to approximate any function. If the
number of samples is too small, then approximated function may miss some critical points and
thus the curve may not be correctly approximated. If the number is too large, then we will have
International Journal of Artificial Intelligence and Applications (IJAIA), Vol. 7, No. 3, May 2016
4
the issue of the over fitting, not to mention the added penalty in time and performance. So, in
regarding to that, we might apply some sampling theorem that is applied extensively in statistics.
Instead, we prefer to include only 100 of points. Itā€™s important to understand the features of the
problem to be able to provide an efficient solution. Since we know from basic mathematics that a
squared function usually takes a shape of a parabola, then it will be enough to take all the points
on one side of the parabola and be able to approximate it, since the parabola is symmetric around
their axis. Arbitrarily, we decided to take all the points in the positive side of the parabola,
which has no more advantage or any increasing in contribution than the negative side. Itā€™s just a
matter of an arbitrary decision.
A sharp observer may notice that the starting point of our samples is 0.1 not 0 and he or she
might wonder what is the rationale behind this decision. Selecting 0 as a sample point will do
more harm than good. Multiplying 0*0 in the actual calculation and then trying to approximate it
will result in a returning value of INF in Matlab. Matlab toolbox is set to tolerate a predefined
value of approximation to any actual number. By attempting to approximate (0^2
), the
approximator will be largely deviated and the error values between actual and approximated is
reaching a very large value that consequently leads to the returning value of infinity by Matlab.
5. RESULTS
After presenting to the reader the design of our solution and all the rationale behind our
experiments setup, we are ready now to run our experiment and record all the values.
To provide a good framework on how our experiment is designed to improve the solution, we
must decide on what parameters affect the obtained results. Next, we can validate our solution
accuracy by varying these parameters. In this problem, we have three parameters they may affect
the accuracy which are:
ā€¢ Number of terms in the chromosome.
ā€¢ The population of individuals.
ā€¢ The number of generations.
Since our objective in this paper is to come up with an approximated curve of high accuracy, the
number of terms is not of much significance. If our problem is targeting reducing the number of
terms, then that parameter should be incorporated in the experiment. Hence, we fix the number
of terms in any chromosome to be 135 bits. That is, any chromosome will have 9 terms. The
population and the number of generations however will change and the obtained fitness function
will be recorded in each run. Table 2 gives the variation of our experiments.
Table 2: Experiments parameters
Experiment Case No No of terms Population Size No of Generation
1 9 1000 1000
2 9 1000 300
3 9 1000 50
4 9 200 1000
5 9 50 1000
Case 1: ( Best Case)
International Journal of Artificial Intelligence and Applications (IJAIA), Vol. 7, No. 3, May 2016
5
Population Size: 1000
Generations : 1000
Fitness : 0.252990008807331
In this run instance, we set the population size and generation size to 1000, As you can see from
the figure (1) , we reached the best value of all of our running experiments by obtaining a fitness
value of 0.25299. Since the fitness Value represents the error, it implies that the approximated
function returned by this instance of genetic algorithm will have an error as low as 0.25299. To
have a clearer picture of the behavior of our fitness function, figure (2) shows the same figure but
at log scale. Here, we can see that our fitness function is minimized from one generation to
another until it reaches convergence by not evolving in hundreds of generations.
It is clear that Log Figure shows the minimization from one generation to another better than the
linear figure. Thus, in the following experiments, we will show the Log figures only.
0 100 200 300 400 500 600 700 800 900 1000
0
2
4
6
8
10
12
14
x 10
4
Generation
Fitnessvalue
Best: 0.25299 Mean: 2121.1762
Best fitness
Mean fitness
Figure 1: Case 1 Fitness value Linear Scale
0 100 200 300 400 500 600 700 800 900 1000
10
-1
10
0
10
1
10
2
10
3
10
4
10
5
10
6
Generation
Fitnessvalue
Best: 0.25299 Mean: 2121.1762
Best fitness
Mean fitness
Figure 2: Case 1 Fitness Value Log Scale
Case 2:
Population Size: 1000
Generations : 300
Fitness : 0.57708
In this experiment, we reduced the number of generations to be maximum 300. Hence, the
fitness value is still small relatively, but is not as optimal as the previous case. It assists in
International Journal of Artificial Intelligence and Applications (IJAIA), Vol. 7, No. 3, May 2016
6
implying that the number of generationā€™s parameter has a small impact on the final result. The
following figure (3) using Log scale shows the behavior of fitness function in finding the
schema.
0 50 100 150 200 250 300
10
-1
10
0
10
1
10
2
10
3
10
4
10
5
10
6
Generation
Fitnessvalue
Best: 0.57708 Mean: 450.024
Best fitness
Mean fitness
Figure 3: Case 2 Fitness Value Log Scale
Case 3:
Population Size: 1000
Generations : 50
Fitness : 0.84211
This experiment supports our claim about the small effect generationā€™s parameter has on the final
result. By reducing the number of generations to a very small number such as 50, the fitness
value is higher than all of the previous two cases. Itā€™s clear from this figure, that if we extend the
number of generation a little bit more, then a finer fitness value will be obtained.
0 5 10 15 20 25 30 35 40 45 50
10
-2
10
0
10
2
10
4
10
6
Generation
Fitnessvalue
Best: 0.84211 Mean: 2831.0001
Best fitness
Mean fitness
Figure 4: Case 3 Fitness Value Log Scale
Case 4:
Population Size: 200
Generations : 1000
Fitness : 2.0594
Case 4 & 5 targets the impact of the population size parameter on the solution. By having the
population size reduced from 1000 to 200, the error reaches a higher value and a convergence
point reaches quickly. This case and the following case prove the significant impact of
Population size on the final result.
International Journal of Artificial Intelligence and Applications (IJAIA), Vol. 7, No. 3, May 2016
7
0 100 200 300 400 500 600 700 800 900 1000
10
0
10
1
10
2
10
3
10
4
10
5
10
6
Generation
Fitnessvalue
Best: 2.0594 Mean: 282.6528
Best fitness
Mean fitness
Figure 5: Case 4 Fitness Value Log Scale
Case 5:
Population Size: 50
Generations : 1000
Fitness : 4.5354
The population size is reduced significantly to only 50 random individuals. Even though the
number of generations is high (1000), the algorithm reaches convergence very early at 800. That
implies it has no improvement for 500 consecutive generations and as such it was stopped
abruptly by the toolbox. The error is the highest than all of the previous cases. Itā€™s evident from
the graph, that genetic algorithms canā€™t gain much improvement when the population size is very
small. Since the population size is very small, genetic algorithm is very restricted in finding an
optimal solution and no matter how many generations are set or how other parameters behaves;
the base population size contributes little to the final result.
0 100 200 300 400 500 600 700 800 900 1000
10
0
10
1
10
2
10
3
10
4
10
5
10
6
Generation
Fitnessvalue
Best: 4.5354 Mean: 3266.1098
Best fitness
Mean fitness
Figure 6: Case 5 Fitness Value Log Scale
Validation of the result can be done by comparing the results of the approximated function to the
actual function. This type of validation is error prone and time consuming. Instead, the figures
above show that the fitness function is decreasing across all the generation and this pattern is
consistent in all experiments. Thus, in all the experiments above, our fitness function is trying to
reach the global minimum before it reaches convergence. Hence, we can conclude that our
program is running correctly and our results are valid and optimized given the parameters
supplied. A summary of the result of the best case is given below where the initial population is
given in Appendix A. An interesting researcher who would like to replicate the experiment
International Journal of Artificial Intelligence and Applications (IJAIA), Vol. 7, No. 3, May 2016
8
would definitely obtain the same results provided that he or she supplemented the exact same
parameters values that we set.
Table 3: Results Summary
Number of Terms 9
Population Size 1000
No of Generations 1000
Fitness Values 0.2599
Individual populations : Appendix A
Output Population
(Binary):
1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 0,
0, 0, 1, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 1, 0, 0,
0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0,
0,0,1,1,0,0,1,0,0,1,1,1,0,0,1,1,1,0,1,0,1,1,1,0,1,1,1,0,
1,0,0,1,1,1,1,1,0,0,0,1,1,0,1,0,0,0,0,1,1,1,1,1,0,0,1,0,
1,1,1,0,0,1,1,1,1,1,1,1,0,0,1,0,1
Output approximated
function:
3.8 X 3.25
- 5.4 X 0.5
- 39.9 X-3.25
+ 25.2 X 2.25
+
45.4X -0.5
- 3.3 X -0.5
+ 13.2 X -0.75
-44.2 X -1.25
+ 13.5
X -2.75
6. CONCLUSION AND FUTURE WORK
Our attempt here of providing a robust yet fast method of finding an approximating function
works correctly. Genetic algorithm and its stochastic search of optimal solution in a large
complex space can save the effort and time to predict the approximated curve of any unknown
engineering system by supplying the input -output pairs only.
The design of chromosome and building parts plays a significant factor in reaching an optimal
solution quickly. The number of bits allocated to each building part and the decision of range
values must be crafted carefully to direct the genetic algorithm to the right region where optimal
solution may lay. Genetic algorithms even perceived as a successful implementation of random
search, a guided direction at the initial stage of the algorithm will ensure a better results and
thatā€™s can be proven in our results above. We tested our algorithm on one function only which is
a squared function. Even though this might be considered as a drawback, itā€™s very important to
notice that our objective of this project not to design a universal function approximator using
genetic algorithm. Instead, our main objective is to show how genetic algorithm can play a vital
role in finding an optimal solution quickly and how adjusting the parameters is contributing to
the results significantly. Testing the algorithm on many different polynomial and non-polynomial
functions is set to be a future work plan and requires a deep understanding of mathematics to
craft an excellent chromosome that absorbs all the contributable features of all mathematical
equations.
7. THREATS TO VALIDITY
There are two main threats that may have impact on the results of this study. The first threat is
that we used the data of one system, however, we plan to use the data of more systems in future
studies.
Another threat is in data collection process. The process of collecting and analysing the data was
semi-automated. This may impact the results as human error may occur.
International Journal of Artificial Intelligence and Applications (IJAIA), Vol. 7, No. 3, May 2016
9
ACKNOWLEDGEMENTS
The authors would like to thank KFUPM for all support.
REFERENCES
[1] Pati, Y.C., R. Rezaiifar, and P.S. Krishnaprasad. Orthogonal matching pursuit: recursive function
approximation with applications to wavelet decomposition. in Signals, Systems and Computers,
1993. 1993 Conference Record of The Twenty-Seventh Asilomar Conference on. 1993.
[2] Shiqian, W. and E. Meng Joo, Dynamic fuzzy neural networks-a novel approach to function
approximation. Systems, Man, and Cybernetics, Part B: Cybernetics, IEEE Transactions on,
2000. 30(2): p. 358-364.
[3] Farrell, J., M. Sharma, and M. Polycarpou, Backstepping-Based Flight Control with Adaptive
Function Approximation. Journal of Guidance, Control, and Dynamics, 2005. 28(6): p. 1089-
1102.
[4] Deep, K. and K.N. Das, Quadratic approximation based hybrid genetic algorithm for function
optimization. Applied Mathematics and Computation, 2008. 203(1): p. 86-98.
[5] Torrecilla-Pinero, F., et al., Parametric Approximation of Functions Using Genetic Algorithms:
An Example with a Logistic Curve, in Numerical Methods and Applications: 7th International
Conference, NMA 2010, Borovets, Bulgaria, August 20-24, 2010. Revised Papers, I. Dimov, S.
Dimova, and N. Kolkovska, Editors. 2011, Springer Berlin Heidelberg: Berlin, Heidelberg. p.
313-320.
[6] Hauser, J.W. and C.N. Purdy. Designing a Genetic Algorithm for Function Approximation for
Embedded and ASIC Applications. in Circuits and Systems, 2006. MWSCAS '06. 49th IEEE
International Midwest Symposium on. 2006.
[7] Holland, J.H., Adaptation in natural and artificial systems. 1992: MIT Press. 211.
[8] Zainuddin, Z. and O. Pauline, Modified wavelet neural network in function approximation and its
application in prediction of time-series pollution data. Applied Soft Computing, 2011. 11(8): p.
4866-4874.
[9] Baqais, A.A.B., M. Ahmed, and M.H. Sharqawy. Function Approximation of Seawater Density
Using Genetic Algorithm. in Proceedings of the World Congress on Engineering. 2013.
[10] Baqais, A., M. Ahmed, and M. Sharqawi. Applying Binary & Real Genetic Algorithms for
Seawater Desalination. in Draft. 2016.
[11] Cao, Y.-Y. and P.M. Frank, Analysis and synthesis of nonlinear time-delay systems via fuzzy
control approach. Fuzzy Systems, IEEE Transactions on, 2000. 8(2): p. 200-211.
Authors
Abdulrahman Baqais is a PhD candidate at Computer Science & Engineering
College, King Fahd University of Petroleum & Minerals (KFUPM), Saudi Arabia. He
has obtained his Bachelor (Hons) in Software Engineering from Multimedia
University, Malaysia in 2007 and his MSc from Staffordshire University, UK in
2010. His research interests including: software engineering, metaheuristics and
search-based techniques and has published several articles in referred journal and
conferences in these areas. He served as the session chair in IAENG conference in
UK, 2013.

More Related Content

What's hot

How principal components analysis is different from factor
How principal components analysis is different from factorHow principal components analysis is different from factor
How principal components analysis is different from factorArup Guha
Ā 
Design and analysis of ra sort
Design and analysis of ra sortDesign and analysis of ra sort
Design and analysis of ra sortijfcstjournal
Ā 
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
Ā 
A Novel Methodology to Implement Optimization Algorithms in Machine Learning
A Novel Methodology to Implement Optimization Algorithms in Machine LearningA Novel Methodology to Implement Optimization Algorithms in Machine Learning
A Novel Methodology to Implement Optimization Algorithms in Machine LearningVenkata Karthik Gullapalli
Ā 
Implement principal component analysis (PCA) in python from scratch
Implement principal component analysis (PCA) in python from scratchImplement principal component analysis (PCA) in python from scratch
Implement principal component analysis (PCA) in python from scratchEshanAgarwal4
Ā 
Principal Component Analysis and Clustering
Principal Component Analysis and ClusteringPrincipal Component Analysis and Clustering
Principal Component Analysis and ClusteringUsha Vijay
Ā 
A HYBRID COA/Īµ-CONSTRAINT METHOD FOR SOLVING MULTI-OBJECTIVE PROBLEMS
A HYBRID COA/Īµ-CONSTRAINT METHOD FOR SOLVING MULTI-OBJECTIVE PROBLEMSA HYBRID COA/Īµ-CONSTRAINT METHOD FOR SOLVING MULTI-OBJECTIVE PROBLEMS
A HYBRID COA/Īµ-CONSTRAINT METHOD FOR SOLVING MULTI-OBJECTIVE PROBLEMSijfcstjournal
Ā 
Introduction to Principle Component Analysis
Introduction to Principle Component AnalysisIntroduction to Principle Component Analysis
Introduction to Principle Component AnalysisSunjeet Jena
Ā 
THE IMPLICATION OF STATISTICAL ANALYSIS AND FEATURE ENGINEERING FOR MODEL BUI...
THE IMPLICATION OF STATISTICAL ANALYSIS AND FEATURE ENGINEERING FOR MODEL BUI...THE IMPLICATION OF STATISTICAL ANALYSIS AND FEATURE ENGINEERING FOR MODEL BUI...
THE IMPLICATION OF STATISTICAL ANALYSIS AND FEATURE ENGINEERING FOR MODEL BUI...ijcseit
Ā 
Principal component analysis and lda
Principal component analysis and ldaPrincipal component analysis and lda
Principal component analysis and ldaSuresh Pokharel
Ā 
AN IMPROVED ITERATIVE METHOD FOR SOLVING GENERAL SYSTEM OF EQUATIONS VIA GENE...
AN IMPROVED ITERATIVE METHOD FOR SOLVING GENERAL SYSTEM OF EQUATIONS VIA GENE...AN IMPROVED ITERATIVE METHOD FOR SOLVING GENERAL SYSTEM OF EQUATIONS VIA GENE...
AN IMPROVED ITERATIVE METHOD FOR SOLVING GENERAL SYSTEM OF EQUATIONS VIA GENE...Zac Darcy
Ā 

What's hot (17)

How principal components analysis is different from factor
How principal components analysis is different from factorHow principal components analysis is different from factor
How principal components analysis is different from factor
Ā 
Design and analysis of ra sort
Design and analysis of ra sortDesign and analysis of ra sort
Design and analysis of ra sort
Ā 
Dv33736740
Dv33736740Dv33736740
Dv33736740
Ā 
Cuckoo Search: Recent Advances and Applications
Cuckoo Search: Recent Advances and ApplicationsCuckoo Search: Recent Advances and Applications
Cuckoo Search: Recent Advances and Applications
Ā 
A Novel Methodology to Implement Optimization Algorithms in Machine Learning
A Novel Methodology to Implement Optimization Algorithms in Machine LearningA Novel Methodology to Implement Optimization Algorithms in Machine Learning
A Novel Methodology to Implement Optimization Algorithms in Machine Learning
Ā 
Implement principal component analysis (PCA) in python from scratch
Implement principal component analysis (PCA) in python from scratchImplement principal component analysis (PCA) in python from scratch
Implement principal component analysis (PCA) in python from scratch
Ā 
Principal Component Analysis
Principal Component AnalysisPrincipal Component Analysis
Principal Component Analysis
Ā 
Ds33717725
Ds33717725Ds33717725
Ds33717725
Ā 
Principal Component Analysis and Clustering
Principal Component Analysis and ClusteringPrincipal Component Analysis and Clustering
Principal Component Analysis and Clustering
Ā 
2041_2
2041_22041_2
2041_2
Ā 
A HYBRID COA/Īµ-CONSTRAINT METHOD FOR SOLVING MULTI-OBJECTIVE PROBLEMS
A HYBRID COA/Īµ-CONSTRAINT METHOD FOR SOLVING MULTI-OBJECTIVE PROBLEMSA HYBRID COA/Īµ-CONSTRAINT METHOD FOR SOLVING MULTI-OBJECTIVE PROBLEMS
A HYBRID COA/Īµ-CONSTRAINT METHOD FOR SOLVING MULTI-OBJECTIVE PROBLEMS
Ā 
07 analisis komponen utama
07 analisis komponen utama07 analisis komponen utama
07 analisis komponen utama
Ā 
Introduction to Principle Component Analysis
Introduction to Principle Component AnalysisIntroduction to Principle Component Analysis
Introduction to Principle Component Analysis
Ā 
THE IMPLICATION OF STATISTICAL ANALYSIS AND FEATURE ENGINEERING FOR MODEL BUI...
THE IMPLICATION OF STATISTICAL ANALYSIS AND FEATURE ENGINEERING FOR MODEL BUI...THE IMPLICATION OF STATISTICAL ANALYSIS AND FEATURE ENGINEERING FOR MODEL BUI...
THE IMPLICATION OF STATISTICAL ANALYSIS AND FEATURE ENGINEERING FOR MODEL BUI...
Ā 
Principal component analysis and lda
Principal component analysis and ldaPrincipal component analysis and lda
Principal component analysis and lda
Ā 
Pca ppt
Pca pptPca ppt
Pca ppt
Ā 
AN IMPROVED ITERATIVE METHOD FOR SOLVING GENERAL SYSTEM OF EQUATIONS VIA GENE...
AN IMPROVED ITERATIVE METHOD FOR SOLVING GENERAL SYSTEM OF EQUATIONS VIA GENE...AN IMPROVED ITERATIVE METHOD FOR SOLVING GENERAL SYSTEM OF EQUATIONS VIA GENE...
AN IMPROVED ITERATIVE METHOD FOR SOLVING GENERAL SYSTEM OF EQUATIONS VIA GENE...
Ā 

Viewers also liked

OCR-THE 3 LAYERED APPROACH FOR DECISION MAKING STATE AND IDENTIFICATION OF TE...
OCR-THE 3 LAYERED APPROACH FOR DECISION MAKING STATE AND IDENTIFICATION OF TE...OCR-THE 3 LAYERED APPROACH FOR DECISION MAKING STATE AND IDENTIFICATION OF TE...
OCR-THE 3 LAYERED APPROACH FOR DECISION MAKING STATE AND IDENTIFICATION OF TE...ijaia
Ā 
A FRAMEWORK FOR DETECTING FRAUDULENT ACTIVITIES IN EDO STATE TAX COLLECTION S...
A FRAMEWORK FOR DETECTING FRAUDULENT ACTIVITIES IN EDO STATE TAX COLLECTION S...A FRAMEWORK FOR DETECTING FRAUDULENT ACTIVITIES IN EDO STATE TAX COLLECTION S...
A FRAMEWORK FOR DETECTING FRAUDULENT ACTIVITIES IN EDO STATE TAX COLLECTION S...ijaia
Ā 
A REVIEW ON OPTIMIZATION OF LEAST SQUARES SUPPORT VECTOR MACHINE FOR TIME SER...
A REVIEW ON OPTIMIZATION OF LEAST SQUARES SUPPORT VECTOR MACHINE FOR TIME SER...A REVIEW ON OPTIMIZATION OF LEAST SQUARES SUPPORT VECTOR MACHINE FOR TIME SER...
A REVIEW ON OPTIMIZATION OF LEAST SQUARES SUPPORT VECTOR MACHINE FOR TIME SER...ijaia
Ā 
Data Mining Un-Compressed Images from cloud with Clustering Compression techn...
Data Mining Un-Compressed Images from cloud with Clustering Compression techn...Data Mining Un-Compressed Images from cloud with Clustering Compression techn...
Data Mining Un-Compressed Images from cloud with Clustering Compression techn...ijaia
Ā 
SXSW 2013 Panel Pickers - Making Google Analytics Data More Beautiful
SXSW 2013 Panel Pickers - Making Google Analytics Data More BeautifulSXSW 2013 Panel Pickers - Making Google Analytics Data More Beautiful
SXSW 2013 Panel Pickers - Making Google Analytics Data More BeautifulDana Pake
Ā 
ONTOLOGICAL TREE GENERATION FOR ENHANCED INFORMATION RETRIEVAL
ONTOLOGICAL TREE GENERATION FOR ENHANCED INFORMATION RETRIEVALONTOLOGICAL TREE GENERATION FOR ENHANCED INFORMATION RETRIEVAL
ONTOLOGICAL TREE GENERATION FOR ENHANCED INFORMATION RETRIEVALijaia
Ā 
Suitability of naĆÆve bayesian methods for paragraph level text classification...
Suitability of naĆÆve bayesian methods for paragraph level text classification...Suitability of naĆÆve bayesian methods for paragraph level text classification...
Suitability of naĆÆve bayesian methods for paragraph level text classification...ijaia
Ā 
Using sentiment analysis for stock
Using sentiment analysis for stockUsing sentiment analysis for stock
Using sentiment analysis for stockijaia
Ā 
A STATIC MALWARE DETECTION SYSTEM USING DATA MINING METHODS
A STATIC MALWARE DETECTION SYSTEM USING DATA MINING METHODSA STATIC MALWARE DETECTION SYSTEM USING DATA MINING METHODS
A STATIC MALWARE DETECTION SYSTEM USING DATA MINING METHODSijaia
Ā 
CROSS DATASET EVALUATION OF FEATURE EXTRACTION TECHNIQUES FOR LEAF CLASSIFICA...
CROSS DATASET EVALUATION OF FEATURE EXTRACTION TECHNIQUES FOR LEAF CLASSIFICA...CROSS DATASET EVALUATION OF FEATURE EXTRACTION TECHNIQUES FOR LEAF CLASSIFICA...
CROSS DATASET EVALUATION OF FEATURE EXTRACTION TECHNIQUES FOR LEAF CLASSIFICA...ijaia
Ā 
Self learning computer
Self learning computerSelf learning computer
Self learning computerijaia
Ā 
A SYSTEM OF SERIAL COMPUTATION FOR CLASSIFIED RULES PREDICTION IN NONREGULAR ...
A SYSTEM OF SERIAL COMPUTATION FOR CLASSIFIED RULES PREDICTION IN NONREGULAR ...A SYSTEM OF SERIAL COMPUTATION FOR CLASSIFIED RULES PREDICTION IN NONREGULAR ...
A SYSTEM OF SERIAL COMPUTATION FOR CLASSIFIED RULES PREDICTION IN NONREGULAR ...ijaia
Ā 
Text compression in LZW and Flate
Text compression in LZW and FlateText compression in LZW and Flate
Text compression in LZW and FlateSubeer Rangra
Ā 
Classification with Naive Bayes
Classification with Naive BayesClassification with Naive Bayes
Classification with Naive BayesJosh Patterson
Ā 
Sentiment analysis using naive bayes classifier
Sentiment analysis using naive bayes classifier Sentiment analysis using naive bayes classifier
Sentiment analysis using naive bayes classifier Dev Sahu
Ā 
Wavelet based image compression technique
Wavelet based image compression techniqueWavelet based image compression technique
Wavelet based image compression techniquePriyanka Pachori
Ā 

Viewers also liked (20)

OCR-THE 3 LAYERED APPROACH FOR DECISION MAKING STATE AND IDENTIFICATION OF TE...
OCR-THE 3 LAYERED APPROACH FOR DECISION MAKING STATE AND IDENTIFICATION OF TE...OCR-THE 3 LAYERED APPROACH FOR DECISION MAKING STATE AND IDENTIFICATION OF TE...
OCR-THE 3 LAYERED APPROACH FOR DECISION MAKING STATE AND IDENTIFICATION OF TE...
Ā 
A FRAMEWORK FOR DETECTING FRAUDULENT ACTIVITIES IN EDO STATE TAX COLLECTION S...
A FRAMEWORK FOR DETECTING FRAUDULENT ACTIVITIES IN EDO STATE TAX COLLECTION S...A FRAMEWORK FOR DETECTING FRAUDULENT ACTIVITIES IN EDO STATE TAX COLLECTION S...
A FRAMEWORK FOR DETECTING FRAUDULENT ACTIVITIES IN EDO STATE TAX COLLECTION S...
Ā 
A REVIEW ON OPTIMIZATION OF LEAST SQUARES SUPPORT VECTOR MACHINE FOR TIME SER...
A REVIEW ON OPTIMIZATION OF LEAST SQUARES SUPPORT VECTOR MACHINE FOR TIME SER...A REVIEW ON OPTIMIZATION OF LEAST SQUARES SUPPORT VECTOR MACHINE FOR TIME SER...
A REVIEW ON OPTIMIZATION OF LEAST SQUARES SUPPORT VECTOR MACHINE FOR TIME SER...
Ā 
Data Mining Un-Compressed Images from cloud with Clustering Compression techn...
Data Mining Un-Compressed Images from cloud with Clustering Compression techn...Data Mining Un-Compressed Images from cloud with Clustering Compression techn...
Data Mining Un-Compressed Images from cloud with Clustering Compression techn...
Ā 
Lossless
LosslessLossless
Lossless
Ā 
SXSW 2013 Panel Pickers - Making Google Analytics Data More Beautiful
SXSW 2013 Panel Pickers - Making Google Analytics Data More BeautifulSXSW 2013 Panel Pickers - Making Google Analytics Data More Beautiful
SXSW 2013 Panel Pickers - Making Google Analytics Data More Beautiful
Ā 
ONTOLOGICAL TREE GENERATION FOR ENHANCED INFORMATION RETRIEVAL
ONTOLOGICAL TREE GENERATION FOR ENHANCED INFORMATION RETRIEVALONTOLOGICAL TREE GENERATION FOR ENHANCED INFORMATION RETRIEVAL
ONTOLOGICAL TREE GENERATION FOR ENHANCED INFORMATION RETRIEVAL
Ā 
Suitability of naĆÆve bayesian methods for paragraph level text classification...
Suitability of naĆÆve bayesian methods for paragraph level text classification...Suitability of naĆÆve bayesian methods for paragraph level text classification...
Suitability of naĆÆve bayesian methods for paragraph level text classification...
Ā 
Using sentiment analysis for stock
Using sentiment analysis for stockUsing sentiment analysis for stock
Using sentiment analysis for stock
Ā 
A STATIC MALWARE DETECTION SYSTEM USING DATA MINING METHODS
A STATIC MALWARE DETECTION SYSTEM USING DATA MINING METHODSA STATIC MALWARE DETECTION SYSTEM USING DATA MINING METHODS
A STATIC MALWARE DETECTION SYSTEM USING DATA MINING METHODS
Ā 
Jpeg dct
Jpeg dctJpeg dct
Jpeg dct
Ā 
CROSS DATASET EVALUATION OF FEATURE EXTRACTION TECHNIQUES FOR LEAF CLASSIFICA...
CROSS DATASET EVALUATION OF FEATURE EXTRACTION TECHNIQUES FOR LEAF CLASSIFICA...CROSS DATASET EVALUATION OF FEATURE EXTRACTION TECHNIQUES FOR LEAF CLASSIFICA...
CROSS DATASET EVALUATION OF FEATURE EXTRACTION TECHNIQUES FOR LEAF CLASSIFICA...
Ā 
Self learning computer
Self learning computerSelf learning computer
Self learning computer
Ā 
A SYSTEM OF SERIAL COMPUTATION FOR CLASSIFIED RULES PREDICTION IN NONREGULAR ...
A SYSTEM OF SERIAL COMPUTATION FOR CLASSIFIED RULES PREDICTION IN NONREGULAR ...A SYSTEM OF SERIAL COMPUTATION FOR CLASSIFIED RULES PREDICTION IN NONREGULAR ...
A SYSTEM OF SERIAL COMPUTATION FOR CLASSIFIED RULES PREDICTION IN NONREGULAR ...
Ā 
Text compression in LZW and Flate
Text compression in LZW and FlateText compression in LZW and Flate
Text compression in LZW and Flate
Ā 
Classification with Naive Bayes
Classification with Naive BayesClassification with Naive Bayes
Classification with Naive Bayes
Ā 
Sentiment analysis using naive bayes classifier
Sentiment analysis using naive bayes classifier Sentiment analysis using naive bayes classifier
Sentiment analysis using naive bayes classifier
Ā 
Naive bayes
Naive bayesNaive bayes
Naive bayes
Ā 
Wavelet based image compression technique
Wavelet based image compression techniqueWavelet based image compression technique
Wavelet based image compression technique
Ā 
Back-to-School Survey 2016
Back-to-School Survey 2016Back-to-School Survey 2016
Back-to-School Survey 2016
Ā 

Similar to GENETIC ALGORITHM FOR FUNCTION APPROXIMATION: AN EXPERIMENTAL INVESTIGATION

Performance Comparision of Machine Learning Algorithms
Performance Comparision of Machine Learning AlgorithmsPerformance Comparision of Machine Learning Algorithms
Performance Comparision of Machine Learning AlgorithmsDinusha Dilanka
Ā 
final paper1
final paper1final paper1
final paper1Leon Hunter
Ā 
Supervised Learning.pdf
Supervised Learning.pdfSupervised Learning.pdf
Supervised Learning.pdfgadissaassefa
Ā 
OPTIMIZATION IN ENGINE DESIGN VIA FORMAL CONCEPT ANALYSIS USING NEGATIVE ATTR...
OPTIMIZATION IN ENGINE DESIGN VIA FORMAL CONCEPT ANALYSIS USING NEGATIVE ATTR...OPTIMIZATION IN ENGINE DESIGN VIA FORMAL CONCEPT ANALYSIS USING NEGATIVE ATTR...
OPTIMIZATION IN ENGINE DESIGN VIA FORMAL CONCEPT ANALYSIS USING NEGATIVE ATTR...cscpconf
Ā 
OPTIMIZATION IN ENGINE DESIGN VIA FORMAL CONCEPT ANALYSIS USING NEGATIVE ATTR...
OPTIMIZATION IN ENGINE DESIGN VIA FORMAL CONCEPT ANALYSIS USING NEGATIVE ATTR...OPTIMIZATION IN ENGINE DESIGN VIA FORMAL CONCEPT ANALYSIS USING NEGATIVE ATTR...
OPTIMIZATION IN ENGINE DESIGN VIA FORMAL CONCEPT ANALYSIS USING NEGATIVE ATTR...csandit
Ā 
Sample_Subjective_Questions_Answers (1).pdf
Sample_Subjective_Questions_Answers (1).pdfSample_Subjective_Questions_Answers (1).pdf
Sample_Subjective_Questions_Answers (1).pdfAaryanArora10
Ā 
notes as .ppt
notes as .pptnotes as .ppt
notes as .pptbutest
Ā 
Heart disease classification
Heart disease classificationHeart disease classification
Heart disease classificationSnehaDey21
Ā 
House Price Estimation as a Function Fitting Problem with using ANN Approach
House Price Estimation as a Function Fitting Problem with using ANN ApproachHouse Price Estimation as a Function Fitting Problem with using ANN Approach
House Price Estimation as a Function Fitting Problem with using ANN ApproachYusuf Uzun
Ā 
Aad introduction
Aad introductionAad introduction
Aad introductionMr SMAK
Ā 
Medical diagnosis classification
Medical diagnosis classificationMedical diagnosis classification
Medical diagnosis classificationcsandit
Ā 
MEDICAL DIAGNOSIS CLASSIFICATION USING MIGRATION BASED DIFFERENTIAL EVOLUTION...
MEDICAL DIAGNOSIS CLASSIFICATION USING MIGRATION BASED DIFFERENTIAL EVOLUTION...MEDICAL DIAGNOSIS CLASSIFICATION USING MIGRATION BASED DIFFERENTIAL EVOLUTION...
MEDICAL DIAGNOSIS CLASSIFICATION USING MIGRATION BASED DIFFERENTIAL EVOLUTION...cscpconf
Ā 
IJCSI-2015-12-2-10138 (1) (2)
IJCSI-2015-12-2-10138 (1) (2)IJCSI-2015-12-2-10138 (1) (2)
IJCSI-2015-12-2-10138 (1) (2)Dr Muhannad Al-Hasan
Ā 
Chapter 18,19
Chapter 18,19Chapter 18,19
Chapter 18,19heba_ahmad
Ā 
An Improved Iterative Method for Solving General System of Equations via Gene...
An Improved Iterative Method for Solving General System of Equations via Gene...An Improved Iterative Method for Solving General System of Equations via Gene...
An Improved Iterative Method for Solving General System of Equations via Gene...Zac Darcy
Ā 
An Improved Iterative Method for Solving General System of Equations via Gene...
An Improved Iterative Method for Solving General System of Equations via Gene...An Improved Iterative Method for Solving General System of Equations via Gene...
An Improved Iterative Method for Solving General System of Equations via Gene...Zac Darcy
Ā 
Data Trend Analysis by Assigning Polynomial Function For Given Data Set
Data Trend Analysis by Assigning Polynomial Function For Given Data SetData Trend Analysis by Assigning Polynomial Function For Given Data Set
Data Trend Analysis by Assigning Polynomial Function For Given Data SetIJCERT
Ā 
Essentials of machine learning algorithms
Essentials of machine learning algorithmsEssentials of machine learning algorithms
Essentials of machine learning algorithmsArunangsu Sahu
Ā 

Similar to GENETIC ALGORITHM FOR FUNCTION APPROXIMATION: AN EXPERIMENTAL INVESTIGATION (20)

Performance Comparision of Machine Learning Algorithms
Performance Comparision of Machine Learning AlgorithmsPerformance Comparision of Machine Learning Algorithms
Performance Comparision of Machine Learning Algorithms
Ā 
final paper1
final paper1final paper1
final paper1
Ā 
Supervised Learning.pdf
Supervised Learning.pdfSupervised Learning.pdf
Supervised Learning.pdf
Ā 
OPTIMIZATION IN ENGINE DESIGN VIA FORMAL CONCEPT ANALYSIS USING NEGATIVE ATTR...
OPTIMIZATION IN ENGINE DESIGN VIA FORMAL CONCEPT ANALYSIS USING NEGATIVE ATTR...OPTIMIZATION IN ENGINE DESIGN VIA FORMAL CONCEPT ANALYSIS USING NEGATIVE ATTR...
OPTIMIZATION IN ENGINE DESIGN VIA FORMAL CONCEPT ANALYSIS USING NEGATIVE ATTR...
Ā 
OPTIMIZATION IN ENGINE DESIGN VIA FORMAL CONCEPT ANALYSIS USING NEGATIVE ATTR...
OPTIMIZATION IN ENGINE DESIGN VIA FORMAL CONCEPT ANALYSIS USING NEGATIVE ATTR...OPTIMIZATION IN ENGINE DESIGN VIA FORMAL CONCEPT ANALYSIS USING NEGATIVE ATTR...
OPTIMIZATION IN ENGINE DESIGN VIA FORMAL CONCEPT ANALYSIS USING NEGATIVE ATTR...
Ā 
Pca seminar final report
Pca seminar final reportPca seminar final report
Pca seminar final report
Ā 
Sample_Subjective_Questions_Answers (1).pdf
Sample_Subjective_Questions_Answers (1).pdfSample_Subjective_Questions_Answers (1).pdf
Sample_Subjective_Questions_Answers (1).pdf
Ā 
notes as .ppt
notes as .pptnotes as .ppt
notes as .ppt
Ā 
Qt unit i
Qt unit   iQt unit   i
Qt unit i
Ā 
Heart disease classification
Heart disease classificationHeart disease classification
Heart disease classification
Ā 
House Price Estimation as a Function Fitting Problem with using ANN Approach
House Price Estimation as a Function Fitting Problem with using ANN ApproachHouse Price Estimation as a Function Fitting Problem with using ANN Approach
House Price Estimation as a Function Fitting Problem with using ANN Approach
Ā 
Aad introduction
Aad introductionAad introduction
Aad introduction
Ā 
Medical diagnosis classification
Medical diagnosis classificationMedical diagnosis classification
Medical diagnosis classification
Ā 
MEDICAL DIAGNOSIS CLASSIFICATION USING MIGRATION BASED DIFFERENTIAL EVOLUTION...
MEDICAL DIAGNOSIS CLASSIFICATION USING MIGRATION BASED DIFFERENTIAL EVOLUTION...MEDICAL DIAGNOSIS CLASSIFICATION USING MIGRATION BASED DIFFERENTIAL EVOLUTION...
MEDICAL DIAGNOSIS CLASSIFICATION USING MIGRATION BASED DIFFERENTIAL EVOLUTION...
Ā 
IJCSI-2015-12-2-10138 (1) (2)
IJCSI-2015-12-2-10138 (1) (2)IJCSI-2015-12-2-10138 (1) (2)
IJCSI-2015-12-2-10138 (1) (2)
Ā 
Chapter 18,19
Chapter 18,19Chapter 18,19
Chapter 18,19
Ā 
An Improved Iterative Method for Solving General System of Equations via Gene...
An Improved Iterative Method for Solving General System of Equations via Gene...An Improved Iterative Method for Solving General System of Equations via Gene...
An Improved Iterative Method for Solving General System of Equations via Gene...
Ā 
An Improved Iterative Method for Solving General System of Equations via Gene...
An Improved Iterative Method for Solving General System of Equations via Gene...An Improved Iterative Method for Solving General System of Equations via Gene...
An Improved Iterative Method for Solving General System of Equations via Gene...
Ā 
Data Trend Analysis by Assigning Polynomial Function For Given Data Set
Data Trend Analysis by Assigning Polynomial Function For Given Data SetData Trend Analysis by Assigning Polynomial Function For Given Data Set
Data Trend Analysis by Assigning Polynomial Function For Given Data Set
Ā 
Essentials of machine learning algorithms
Essentials of machine learning algorithmsEssentials of machine learning algorithms
Essentials of machine learning algorithms
Ā 

Recently uploaded

ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYKayeClaireEstoconing
Ā 
ENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choomENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choomnelietumpap1
Ā 
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdfInclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdfTechSoup
Ā 
Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Celine George
Ā 
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONTHEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONHumphrey A BeƱa
Ā 
How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17Celine George
Ā 
Q4 English4 Week3 PPT Melcnmg-based.pptx
Q4 English4 Week3 PPT Melcnmg-based.pptxQ4 English4 Week3 PPT Melcnmg-based.pptx
Q4 English4 Week3 PPT Melcnmg-based.pptxnelietumpap1
Ā 
Keynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designKeynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designMIPLM
Ā 
4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptxmary850239
Ā 
ANG SEKTOR NG agrikultura.pptx QUARTER 4
ANG SEKTOR NG agrikultura.pptx QUARTER 4ANG SEKTOR NG agrikultura.pptx QUARTER 4
ANG SEKTOR NG agrikultura.pptx QUARTER 4MiaBumagat1
Ā 
Judging the Relevance and worth of ideas part 2.pptx
Judging the Relevance  and worth of ideas part 2.pptxJudging the Relevance  and worth of ideas part 2.pptx
Judging the Relevance and worth of ideas part 2.pptxSherlyMaeNeri
Ā 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxiammrhaywood
Ā 
Hį»ŒC Tį»T TIįŗ¾NG ANH 11 THEO CHĘÆĘ NG TRƌNH GLOBAL SUCCESS ĐƁP ƁN CHI TIįŗ¾T - Cįŗ¢ NĂ...
Hį»ŒC Tį»T TIįŗ¾NG ANH 11 THEO CHĘÆĘ NG TRƌNH GLOBAL SUCCESS ĐƁP ƁN CHI TIįŗ¾T - Cįŗ¢ NĂ...Hį»ŒC Tį»T TIįŗ¾NG ANH 11 THEO CHĘÆĘ NG TRƌNH GLOBAL SUCCESS ĐƁP ƁN CHI TIįŗ¾T - Cįŗ¢ NĂ...
Hį»ŒC Tį»T TIįŗ¾NG ANH 11 THEO CHĘÆĘ NG TRƌNH GLOBAL SUCCESS ĐƁP ƁN CHI TIįŗ¾T - Cįŗ¢ NĂ...Nguyen Thanh Tu Collection
Ā 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxthorishapillay1
Ā 
USPSĀ® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPSĀ® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...USPSĀ® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPSĀ® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...Postal Advocate Inc.
Ā 

Recently uploaded (20)

Model Call Girl in Tilak Nagar Delhi reach out to us at šŸ”9953056974šŸ”
Model Call Girl in Tilak Nagar Delhi reach out to us at šŸ”9953056974šŸ”Model Call Girl in Tilak Nagar Delhi reach out to us at šŸ”9953056974šŸ”
Model Call Girl in Tilak Nagar Delhi reach out to us at šŸ”9953056974šŸ”
Ā 
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
Ā 
ENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choomENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choom
Ā 
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdfInclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Ā 
FINALS_OF_LEFT_ON_C'N_EL_DORADO_2024.pptx
FINALS_OF_LEFT_ON_C'N_EL_DORADO_2024.pptxFINALS_OF_LEFT_ON_C'N_EL_DORADO_2024.pptx
FINALS_OF_LEFT_ON_C'N_EL_DORADO_2024.pptx
Ā 
Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17
Ā 
YOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptx
YOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptxYOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptx
YOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptx
Ā 
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONTHEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
Ā 
How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17
Ā 
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptxYOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
Ā 
Q4 English4 Week3 PPT Melcnmg-based.pptx
Q4 English4 Week3 PPT Melcnmg-based.pptxQ4 English4 Week3 PPT Melcnmg-based.pptx
Q4 English4 Week3 PPT Melcnmg-based.pptx
Ā 
Keynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designKeynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-design
Ā 
4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx
Ā 
ANG SEKTOR NG agrikultura.pptx QUARTER 4
ANG SEKTOR NG agrikultura.pptx QUARTER 4ANG SEKTOR NG agrikultura.pptx QUARTER 4
ANG SEKTOR NG agrikultura.pptx QUARTER 4
Ā 
Judging the Relevance and worth of ideas part 2.pptx
Judging the Relevance  and worth of ideas part 2.pptxJudging the Relevance  and worth of ideas part 2.pptx
Judging the Relevance and worth of ideas part 2.pptx
Ā 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
Ā 
Hį»ŒC Tį»T TIįŗ¾NG ANH 11 THEO CHĘÆĘ NG TRƌNH GLOBAL SUCCESS ĐƁP ƁN CHI TIįŗ¾T - Cįŗ¢ NĂ...
Hį»ŒC Tį»T TIįŗ¾NG ANH 11 THEO CHĘÆĘ NG TRƌNH GLOBAL SUCCESS ĐƁP ƁN CHI TIįŗ¾T - Cįŗ¢ NĂ...Hį»ŒC Tį»T TIįŗ¾NG ANH 11 THEO CHĘÆĘ NG TRƌNH GLOBAL SUCCESS ĐƁP ƁN CHI TIįŗ¾T - Cįŗ¢ NĂ...
Hį»ŒC Tį»T TIįŗ¾NG ANH 11 THEO CHĘÆĘ NG TRƌNH GLOBAL SUCCESS ĐƁP ƁN CHI TIįŗ¾T - Cįŗ¢ NĂ...
Ā 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptx
Ā 
USPSĀ® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPSĀ® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...USPSĀ® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPSĀ® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
Ā 
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdfTataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
Ā 

GENETIC ALGORITHM FOR FUNCTION APPROXIMATION: AN EXPERIMENTAL INVESTIGATION

  • 1. International Journal of Artificial Intelligence and Applications (IJAIA), Vol. 7, No. 3, May 2016 DOI: 10.5121/ijaia.2016.7301 1 GENETIC ALGORITHM FOR FUNCTION APPROXIMATION: AN EXPERIMENTAL INVESTIGATION Abdulrahman Baqais1 1 Department of Information and Computer Science, KFUPM, Dhahran, Saudi Arabia ABSTRACT Function Approximation is a popular engineering problems used in system identification or Equation optimization. Due to the complex search space it requires, AI techniques has been used extensively to spot the best curves that match the real behavior of the system. Genetic algorithm is known for their fast convergence and their ability to find an optimal structure of the solution. We propose using a genetic algorithm as a function approximator. Our attempt will focus on using the polynomial form of the approximation. After implementing the algorithm, we are going to report our results and compare it with the real function output. KEYWORDS Genetic Algorithm, Function Approximation, Experimentation 1. INTRODUCTION Function approximation is used in science and engineering field in order to find the relationship between two or more variables: the independent variable (x) and the dependent variable (y) [1-3]. In such situation, input-output pairs of any engineering or scientific problems are collected using a suitable experiment or instrument. However, a direct relation in the form of equation canā€™t be inferred between these pairs due to the absence of strong correlations. To address this issue, Artificial Intelligence (AI) algorithms have been utilized to produce an equation between input-output pairs with higher accuracy. Genetic algorithms have been implemented in various articles with promising results as in [4-6]. 2. LITERATURE REVIEW Genetic algorithm is a metaheuristic algorithm that is designed by Holland in 1975 [7]. The algorithm starts by providing a random population of points of the search space. At each iteration, the algorithm applies some operators such as: crossover and mutation on the current population and evaluate them using an objective (fitness) function. In Function approximation, the objective function of each problem is to come up with an equation with higher accuracy between input-output pairs. That is, the objective function is to reduce the errors of the equation. Different error measurement can be used such as: Least Absolute Error (LAE), Mean Squared Error (MSE) or residual sum of squares (RSS). There are many studies that use different AI algorithms including GA to finding the function approximation as in [4, 6].
  • 2. International Journal of Artificial Intelligence and Applications (IJAIA), Vol. 7, No. 3, May 2016 2 In [8], a variant of neural network named Wavelet Neural Network was used to approximate the function of pollution at Texas in USA. In [9, 10], the authors were able to provide an equation of higher accuracy with few coefficients of real-world data problem concerning the seawater density. The equation was generated using GA. Fuzzy Systems were used in [11] to approximate nonlinear relations. 3. RESEARCH METHODOLOGY In this paper, we are proposing using genetic algorithms for approximation of polynomial functions. Genetic algorithms are known for their fast search for solution in a large complex space. Basically, Genetic algorithms can effectively find an optimal approximated curve to any mathematical equations with high accuracy. It should be noted that genetic algorithms requires a deep understanding of the problem and a crafted design of the chromosome. The fitness function must be chosen carefully to reflect the most contributable feature to the final solution. By maximization of the fitness function in each generation, genetic algorithm will exhibit a schema that converges to an optimal robust solution. In the next section, we are going to explain the details of our program and experiment. The rationale behind each decision in our experiment is explained in details with sound justifications. Each step in setting up our experimental framework is written clearly with supporting figures. It must be understood that the objective of this project is to design a specific genetic algorithm for approximating polynomial function. Since this is an Artificial Intelligence course, our aim is to give a deep analysis of the behavior of genetic algorithm and its parameters. We used Matlab Toolbox to give us a quick access to various parameters of the genetic algorithm such as selection, number of generation and for plotting purposes. However, the design of the chromosome and the fitness function is coded to be adjusted to our problem. In function approximation, the most feature of the solution is to have a high accuracy of the obtained curve to the original equation. This implies very low errors in approximating each point in relative to the actual point. So our fitness function will be minimization rather than maximization. To ensure, that our fitness function is coded correctly, the errors must be decreasing through the generations until a convergence or an optimal solution is found. Mean squared error (MSE) was used as a fitness function and itā€™s defined: MSE = The population of our solutions is represented as binary bits. This gives us the flexibility we need to manipulate the chromosome in a variety of ways as we are going to explain shortly. Each chromosome (or individual) contains many terms where each term is composed of two parts: Coefficient Power of the variable. Each term is composed 15 bits, where 10 bits is allocated to coefficient and the remaining bits are allocated to represent the power. Now, for simplicity we will assume that all terms are polynomial functions since polynomial functions are known to be a universal function approximator.
  • 3. International Journal of Artificial Intelligence and Applications (IJAIA), Vol. 7, No. 3, May 2016 3 Another contribution of this paper lies in the range the power of each terms may have. In normal regression approximation, the researcher is constrained to use only integer values in the power part. However, using a resolution concept, we are allowing both the coefficient and the power to have real values. The range of values that the coefficient and the power may take is depicted in the Table 1. Table 1: Range of Coefficient and Power Variables Variable Resolution Coefficient (Coefficient /10) ā€“ 50.4 Power (Power *0.25) - 4 le. Another aspect that needs to be considered is the probability of crossover and mutation and the range of bits they are applied to. Crossover and mutation can be implemented in various ways: either on the term boundary, on the part unit boundary or within the individual bits. Each method has its merits and drawbacks based on the targeted problem. In this specific chromosome design, we opt to play with the crossover and mutation within the bits themselves. This is done for twofold: one all of our terms are in polynomial shape and hence targeting with the term boundary will not help much in converging the solution. If our chromosome design exhibits other function types such as trigonometric function, then targeting terms boundary may have better results. The second reason is that manipulating individual bits increase the chances of finding better solution. Even though, It may increases the complexity of the problem and the search space to explore in general large problems, the simplicity of our problem that allocates only 15 bits to the term mitigate these issues and the extra time added will be negligible or of little significance as we are going to show in the experiment sections. We opt to represent our population of individuals as binary strings. That gives us the flexibility to specify the range of the values of the coefficient and the powers. The following figure shows the basic design of the chromosome: The Fitness Function: where y refers to the real output and is the approximated output. The Final form of the polynomial equation will be on the form of: A(x) = coefficent * X1 power + coefficient * X2 power ā€¦ + coefficent * Xn power 4. EXPERIMENTAL SETUP: In the literature review, we explored different functions proposed by many authors as the target equation. Some choose normal polynomial; others opt for Rastrigin functions due to its suitability since it poses many local minimum points and some may prefer to run their experiments approximating real equations from engineering domains. In this paper, we opt to target polynomial functions of the form: F(x) = x2 Where x ranges between 0.1 - 10.00 with an increasing step of 0.1. Choosing the number of samples is very critical to be able to approximate any function. If the number of samples is too small, then approximated function may miss some critical points and thus the curve may not be correctly approximated. If the number is too large, then we will have
  • 4. International Journal of Artificial Intelligence and Applications (IJAIA), Vol. 7, No. 3, May 2016 4 the issue of the over fitting, not to mention the added penalty in time and performance. So, in regarding to that, we might apply some sampling theorem that is applied extensively in statistics. Instead, we prefer to include only 100 of points. Itā€™s important to understand the features of the problem to be able to provide an efficient solution. Since we know from basic mathematics that a squared function usually takes a shape of a parabola, then it will be enough to take all the points on one side of the parabola and be able to approximate it, since the parabola is symmetric around their axis. Arbitrarily, we decided to take all the points in the positive side of the parabola, which has no more advantage or any increasing in contribution than the negative side. Itā€™s just a matter of an arbitrary decision. A sharp observer may notice that the starting point of our samples is 0.1 not 0 and he or she might wonder what is the rationale behind this decision. Selecting 0 as a sample point will do more harm than good. Multiplying 0*0 in the actual calculation and then trying to approximate it will result in a returning value of INF in Matlab. Matlab toolbox is set to tolerate a predefined value of approximation to any actual number. By attempting to approximate (0^2 ), the approximator will be largely deviated and the error values between actual and approximated is reaching a very large value that consequently leads to the returning value of infinity by Matlab. 5. RESULTS After presenting to the reader the design of our solution and all the rationale behind our experiments setup, we are ready now to run our experiment and record all the values. To provide a good framework on how our experiment is designed to improve the solution, we must decide on what parameters affect the obtained results. Next, we can validate our solution accuracy by varying these parameters. In this problem, we have three parameters they may affect the accuracy which are: ā€¢ Number of terms in the chromosome. ā€¢ The population of individuals. ā€¢ The number of generations. Since our objective in this paper is to come up with an approximated curve of high accuracy, the number of terms is not of much significance. If our problem is targeting reducing the number of terms, then that parameter should be incorporated in the experiment. Hence, we fix the number of terms in any chromosome to be 135 bits. That is, any chromosome will have 9 terms. The population and the number of generations however will change and the obtained fitness function will be recorded in each run. Table 2 gives the variation of our experiments. Table 2: Experiments parameters Experiment Case No No of terms Population Size No of Generation 1 9 1000 1000 2 9 1000 300 3 9 1000 50 4 9 200 1000 5 9 50 1000 Case 1: ( Best Case)
  • 5. International Journal of Artificial Intelligence and Applications (IJAIA), Vol. 7, No. 3, May 2016 5 Population Size: 1000 Generations : 1000 Fitness : 0.252990008807331 In this run instance, we set the population size and generation size to 1000, As you can see from the figure (1) , we reached the best value of all of our running experiments by obtaining a fitness value of 0.25299. Since the fitness Value represents the error, it implies that the approximated function returned by this instance of genetic algorithm will have an error as low as 0.25299. To have a clearer picture of the behavior of our fitness function, figure (2) shows the same figure but at log scale. Here, we can see that our fitness function is minimized from one generation to another until it reaches convergence by not evolving in hundreds of generations. It is clear that Log Figure shows the minimization from one generation to another better than the linear figure. Thus, in the following experiments, we will show the Log figures only. 0 100 200 300 400 500 600 700 800 900 1000 0 2 4 6 8 10 12 14 x 10 4 Generation Fitnessvalue Best: 0.25299 Mean: 2121.1762 Best fitness Mean fitness Figure 1: Case 1 Fitness value Linear Scale 0 100 200 300 400 500 600 700 800 900 1000 10 -1 10 0 10 1 10 2 10 3 10 4 10 5 10 6 Generation Fitnessvalue Best: 0.25299 Mean: 2121.1762 Best fitness Mean fitness Figure 2: Case 1 Fitness Value Log Scale Case 2: Population Size: 1000 Generations : 300 Fitness : 0.57708 In this experiment, we reduced the number of generations to be maximum 300. Hence, the fitness value is still small relatively, but is not as optimal as the previous case. It assists in
  • 6. International Journal of Artificial Intelligence and Applications (IJAIA), Vol. 7, No. 3, May 2016 6 implying that the number of generationā€™s parameter has a small impact on the final result. The following figure (3) using Log scale shows the behavior of fitness function in finding the schema. 0 50 100 150 200 250 300 10 -1 10 0 10 1 10 2 10 3 10 4 10 5 10 6 Generation Fitnessvalue Best: 0.57708 Mean: 450.024 Best fitness Mean fitness Figure 3: Case 2 Fitness Value Log Scale Case 3: Population Size: 1000 Generations : 50 Fitness : 0.84211 This experiment supports our claim about the small effect generationā€™s parameter has on the final result. By reducing the number of generations to a very small number such as 50, the fitness value is higher than all of the previous two cases. Itā€™s clear from this figure, that if we extend the number of generation a little bit more, then a finer fitness value will be obtained. 0 5 10 15 20 25 30 35 40 45 50 10 -2 10 0 10 2 10 4 10 6 Generation Fitnessvalue Best: 0.84211 Mean: 2831.0001 Best fitness Mean fitness Figure 4: Case 3 Fitness Value Log Scale Case 4: Population Size: 200 Generations : 1000 Fitness : 2.0594 Case 4 & 5 targets the impact of the population size parameter on the solution. By having the population size reduced from 1000 to 200, the error reaches a higher value and a convergence point reaches quickly. This case and the following case prove the significant impact of Population size on the final result.
  • 7. International Journal of Artificial Intelligence and Applications (IJAIA), Vol. 7, No. 3, May 2016 7 0 100 200 300 400 500 600 700 800 900 1000 10 0 10 1 10 2 10 3 10 4 10 5 10 6 Generation Fitnessvalue Best: 2.0594 Mean: 282.6528 Best fitness Mean fitness Figure 5: Case 4 Fitness Value Log Scale Case 5: Population Size: 50 Generations : 1000 Fitness : 4.5354 The population size is reduced significantly to only 50 random individuals. Even though the number of generations is high (1000), the algorithm reaches convergence very early at 800. That implies it has no improvement for 500 consecutive generations and as such it was stopped abruptly by the toolbox. The error is the highest than all of the previous cases. Itā€™s evident from the graph, that genetic algorithms canā€™t gain much improvement when the population size is very small. Since the population size is very small, genetic algorithm is very restricted in finding an optimal solution and no matter how many generations are set or how other parameters behaves; the base population size contributes little to the final result. 0 100 200 300 400 500 600 700 800 900 1000 10 0 10 1 10 2 10 3 10 4 10 5 10 6 Generation Fitnessvalue Best: 4.5354 Mean: 3266.1098 Best fitness Mean fitness Figure 6: Case 5 Fitness Value Log Scale Validation of the result can be done by comparing the results of the approximated function to the actual function. This type of validation is error prone and time consuming. Instead, the figures above show that the fitness function is decreasing across all the generation and this pattern is consistent in all experiments. Thus, in all the experiments above, our fitness function is trying to reach the global minimum before it reaches convergence. Hence, we can conclude that our program is running correctly and our results are valid and optimized given the parameters supplied. A summary of the result of the best case is given below where the initial population is given in Appendix A. An interesting researcher who would like to replicate the experiment
  • 8. International Journal of Artificial Intelligence and Applications (IJAIA), Vol. 7, No. 3, May 2016 8 would definitely obtain the same results provided that he or she supplemented the exact same parameters values that we set. Table 3: Results Summary Number of Terms 9 Population Size 1000 No of Generations 1000 Fitness Values 0.2599 Individual populations : Appendix A Output Population (Binary): 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 1, 0, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0,0,1,1,0,0,1,0,0,1,1,1,0,0,1,1,1,0,1,0,1,1,1,0,1,1,1,0, 1,0,0,1,1,1,1,1,0,0,0,1,1,0,1,0,0,0,0,1,1,1,1,1,0,0,1,0, 1,1,1,0,0,1,1,1,1,1,1,1,0,0,1,0,1 Output approximated function: 3.8 X 3.25 - 5.4 X 0.5 - 39.9 X-3.25 + 25.2 X 2.25 + 45.4X -0.5 - 3.3 X -0.5 + 13.2 X -0.75 -44.2 X -1.25 + 13.5 X -2.75 6. CONCLUSION AND FUTURE WORK Our attempt here of providing a robust yet fast method of finding an approximating function works correctly. Genetic algorithm and its stochastic search of optimal solution in a large complex space can save the effort and time to predict the approximated curve of any unknown engineering system by supplying the input -output pairs only. The design of chromosome and building parts plays a significant factor in reaching an optimal solution quickly. The number of bits allocated to each building part and the decision of range values must be crafted carefully to direct the genetic algorithm to the right region where optimal solution may lay. Genetic algorithms even perceived as a successful implementation of random search, a guided direction at the initial stage of the algorithm will ensure a better results and thatā€™s can be proven in our results above. We tested our algorithm on one function only which is a squared function. Even though this might be considered as a drawback, itā€™s very important to notice that our objective of this project not to design a universal function approximator using genetic algorithm. Instead, our main objective is to show how genetic algorithm can play a vital role in finding an optimal solution quickly and how adjusting the parameters is contributing to the results significantly. Testing the algorithm on many different polynomial and non-polynomial functions is set to be a future work plan and requires a deep understanding of mathematics to craft an excellent chromosome that absorbs all the contributable features of all mathematical equations. 7. THREATS TO VALIDITY There are two main threats that may have impact on the results of this study. The first threat is that we used the data of one system, however, we plan to use the data of more systems in future studies. Another threat is in data collection process. The process of collecting and analysing the data was semi-automated. This may impact the results as human error may occur.
  • 9. International Journal of Artificial Intelligence and Applications (IJAIA), Vol. 7, No. 3, May 2016 9 ACKNOWLEDGEMENTS The authors would like to thank KFUPM for all support. REFERENCES [1] Pati, Y.C., R. Rezaiifar, and P.S. Krishnaprasad. Orthogonal matching pursuit: recursive function approximation with applications to wavelet decomposition. in Signals, Systems and Computers, 1993. 1993 Conference Record of The Twenty-Seventh Asilomar Conference on. 1993. [2] Shiqian, W. and E. Meng Joo, Dynamic fuzzy neural networks-a novel approach to function approximation. Systems, Man, and Cybernetics, Part B: Cybernetics, IEEE Transactions on, 2000. 30(2): p. 358-364. [3] Farrell, J., M. Sharma, and M. Polycarpou, Backstepping-Based Flight Control with Adaptive Function Approximation. Journal of Guidance, Control, and Dynamics, 2005. 28(6): p. 1089- 1102. [4] Deep, K. and K.N. Das, Quadratic approximation based hybrid genetic algorithm for function optimization. Applied Mathematics and Computation, 2008. 203(1): p. 86-98. [5] Torrecilla-Pinero, F., et al., Parametric Approximation of Functions Using Genetic Algorithms: An Example with a Logistic Curve, in Numerical Methods and Applications: 7th International Conference, NMA 2010, Borovets, Bulgaria, August 20-24, 2010. Revised Papers, I. Dimov, S. Dimova, and N. Kolkovska, Editors. 2011, Springer Berlin Heidelberg: Berlin, Heidelberg. p. 313-320. [6] Hauser, J.W. and C.N. Purdy. Designing a Genetic Algorithm for Function Approximation for Embedded and ASIC Applications. in Circuits and Systems, 2006. MWSCAS '06. 49th IEEE International Midwest Symposium on. 2006. [7] Holland, J.H., Adaptation in natural and artificial systems. 1992: MIT Press. 211. [8] Zainuddin, Z. and O. Pauline, Modified wavelet neural network in function approximation and its application in prediction of time-series pollution data. Applied Soft Computing, 2011. 11(8): p. 4866-4874. [9] Baqais, A.A.B., M. Ahmed, and M.H. Sharqawy. Function Approximation of Seawater Density Using Genetic Algorithm. in Proceedings of the World Congress on Engineering. 2013. [10] Baqais, A., M. Ahmed, and M. Sharqawi. Applying Binary & Real Genetic Algorithms for Seawater Desalination. in Draft. 2016. [11] Cao, Y.-Y. and P.M. Frank, Analysis and synthesis of nonlinear time-delay systems via fuzzy control approach. Fuzzy Systems, IEEE Transactions on, 2000. 8(2): p. 200-211. Authors Abdulrahman Baqais is a PhD candidate at Computer Science & Engineering College, King Fahd University of Petroleum & Minerals (KFUPM), Saudi Arabia. He has obtained his Bachelor (Hons) in Software Engineering from Multimedia University, Malaysia in 2007 and his MSc from Staffordshire University, UK in 2010. His research interests including: software engineering, metaheuristics and search-based techniques and has published several articles in referred journal and conferences in these areas. He served as the session chair in IAENG conference in UK, 2013.