• 沒有找到結果。

A variable-based genetic algorithm

N/A
N/A
Protected

Academic year: 2021

Share "A variable-based genetic algorithm"

Copied!
5
0
0

加載中.... (立即查看全文)

全文

(1)

A Variable-Based Genetic Algorithm

Kuang-Tsang Jean’72 and Yung-Yaw Chen’

Corresponse Address: Department of Electric Engineering, National Taiwan University, Taipei, Taiwan, R.O.C.. E-mail: jean@ipmc.ee.ntu.edu.tw

2Telecommunication Laboratories, Ministry of Transportation and Communications, Taiwan, R.O.C.

1

1.

INTRODUCTION

ABSTRACT

Genetic algorithms are very powerful search algorithms based on the mechanics of natural selection and natural genetics. As well known, one of differences from many other conventional search algorithms is that genetic algorithms require the natural parameter set of the optimization problem to be coded as a finite-length string. However, the encoding and decoding processes waste many computation time and lose the accuracy of the parameters. In this paper, a novel variable-based genetic algorithm is proposed. The algorithm processes the parameters themselves without coding. It can save the coding processing time and get more accurate values of the parameters. Finally, the system identification problem has been used to demonstrate the power of the algorithm.

In the last few years research devoted to search and optimization has significantly grown. Genetic algorithms (GAS), developed by Holland, are very p o w e h l and popular search algorithms based on the mechanics of natural selection and natural genetics. Recently GAS have been successhlly used in many fancy areas such as system identification [2], hzzy controller design [3], and neural network training [4].

GAS are different from many conventional search algorithms. Firstly, GAS search from a population of points in the search space simultaneously, not a single point, and therefore likely converge toward the global optimal solution. And a GA uses only payoff (objective hnction) information, no need for derivatives or other auxiliary knowledge. Thus, it is very flexible to solve many real-world complex

(2)

problems. Unlike many methods, GAS use probabilistic transition rules to guide their search. But, they are not simple random walks through the search space. GAS use random choice eficiently by employing prior knowledge to rapidly locate optimal solutions. Finally, as well known, GAS require the natural parameter set of the optimization problem to be coded as a finite-length string over some finite alphabet. Almost the variables to be optimized in the application, like neural network's weighting, are continuous, not digital. One must face a trade-off problem between the length of coded string and the resolution of the parameter value. In other words, under a large search space, the length of the string will be very long if a more accurate solution is desired. The coding process and the long code string will waste the computation time and slow down the convergent rate.

In this paper, a novel variable-based genetic algorithm (VGA) is provided. It is not required to encode or digitize the parameters to finite code string. The basic operations of VGA are based on the parameters themselves. It can save the coding processing time and get more accurate values of the parameters.

The organization of the paper is as follows. The basic operations of VGA are briefly introduced in section 2. The design example of the algorithm applying in system identification is

demonstrated in section 3. Finally, the conclusion is given in the last section.

2. A VARIABLE-BASED GENETIC

ALGORITHM

The basic element processed by a VGA is the string formed by the real value of each parameter to be searched. The string can be view as a vector including all parameters. For example, consider the problem of maximizing the hnction flx,,x2,...,x,,), the string is a vector

X=(x,,x,, ..., x,,) eRn . Thus, the search space of the parameters can be extended to all real domain. A simple VGA is also composed of three basic operators: (1) reproduction, (2) crossover, and (3) mutation. But the processes of the operators is a little different from those in simple GA.

Reproduction is a process based on the principle of survival of the fittest. Individual strings are copied according to their fitness (objective) hnction values. The strings with a higher fitness value have a higher probability of contributing one or more offspring in the next generation. To achieve this, firstly, we must define the fitness hnction, which can be any nonlinear, discontinuous, positive hnction. Then individual fitness is calculated and normalized with the sum of all fitness values. The normalized fitness of the string is its survival probability in next generation.

(3)

After reproduction, simple crossover may processed in the following steps. First, members of the newly reproduced strings in the mating pool are mated at random. Second, each pair of the strings undergoing crossing over as follows: two real random number r l , r2 uniformly distributed from -1 to 1 are selected. The new strings are created by adding the difference between the two strings multiplied r l and r2 respectively. For example, consider the pair of the string X=(x,,x, ,..., x,) and Y=O/], y2,. . .J,,), the difference between the two string D = X

-

Y. The

resulting crossover yields two new string:

x/ = X + r i . D Y ' = Y + ~ ~ . D .

Finally, the mutation operator allows new genetic string to be introduction. It just plays a secondary role in the simple VGA. After crossover, each variable of the string in the new population undergoes a random change with a probability equal to the mutation rate. The mutation operator serves to prevent any variable converged to a local optimal solution. However, a high level of mutation yields an essentially random search. The autoscaling mutation rate method [ 5 ] can used to fine-tune the optimal solution.

3. A DESIGN EXAMPLE

Consider a system described by an ARMAX model

where

A(g-') = 1 .O - 1 Sq-' ., B(q-') = 1 .O

+

OSq-' ,

q q - ' ) = 1 .o - 1 .oq-'

+

0.2q-2 ,

d = l , and

At),

u(t) and q-' are the output, input, and backward shift operator respectively. The

e(t) is a normal distributed random noise with

zero mean and unit variance. The system has been used in [ 2 ] to show GA applying in system identification. Now the objective is to estimate the parameters of the polynomials A(q-'), B(q-')

and the delay d, given some the input and output

pairs of system (1). The estimation system can write as follows.

where

i ( q - 1 ) = 1.0 +q-' +a2q-2 ,

i(q-1) = bo

+

b , q-1,

;(t) is the output and ul,u2,bo,bl, anda are the parameters to be estimated. So that the string is a vector X = [ul,a2,bo,bl,dJ and the fitness fbnction is defined as

W

F ( t ) = M - X ( y ( t - i ) - j ( t - i ) ) * (3)

i= 1

where

A4

is a bias term to ensure a positive fitness and w is the number of time steps. In this example,

A4

and w is chosen as 2000 and 30

(4)

respectively. There are 100 population for every generation and the mutation rate is 0.05. The I/O pairs of system (1) are showed on Fig. 1. And the estimation results for each generation are showed on Fig. 2. This example is just used to test the capability of a simple VGA without any improving modification. We can find that the estimation parameter is very close to the real value.

4.

CONCLUSIONS

In this paper, a novel variable-based genetic algorithm (VGA) is provided. It is not required to encode or digitize the parameters to finite code string. The basic element processed by a VGA is the string formed by the real value of each parameter to be search. The string can be viewed as a parameter vector. VGAs can save the coding processing time and get more accurate values of the parameters. It is very eligible to be used to obtain a real optimal solution, like hzzy controller design, system identification and so on. Additional, some ways to speed up the genetic algorithm in 151 are also suitable to VGA.

References

[I] D. E. Goldberg, Genetic AZgorithm in

Search, Optimization and Machine

Learning, Reading, MA: Addison-Wesley, 1989.

PI

~3

1

~ 4 1

~ 5 1

K. Kristinsson and G. A. Dumont, "System Identification and Control Using Genetic Algorithm," IEEE Trans. Syst., Man, Cyber.

Vol. 22, No. 5, pp. 1033-1046, Sept. 1992. C.L. Karr and E. J. Gentry, "Fuzzy Control of pH Using Genetic Algorithms," IEEE Trans. Fuzzy Systems, vol. 1, no. 1, pp. 46

-

53, Feb. 1993.

M. Caudill, "Evolutionary Neural Networks," AI Expert, pp. 28-32, March

1991.

S.A. Kennedy, "Five Ways to a Smarter Genetic Algorithm," AI Expert, pp. 35-38,

Dec. 1993. 15 I I 50 100 150 200 -1

s

-50 0 Nwnber of samples

(5)

\ 1.5 1 -0 -Estimation values 2.5 ~ 2 , -bO a2 0.5- U 1 - 0 . 5 . - ~ -1 a1 -2 50 100 150 d = l 0.971 2 0.7104 0.4939 -1.506 0

數據

Fig.  1  The inputs and outputs of the system (1)

參考文獻

相關文件

• An algorithm is any well-defined computational procedure that takes some value, or set of values, as input and produces some value, or set of values, as output.. • An algorithm is

A multi-objective genetic algorithm is proposed to solve 3D differentiated WSN deployment problems with the objectives of the coverage of sensors, satisfaction of detection

Moreover, this chapter also presents the basic of the Taguchi method, artificial neural network, genetic algorithm, particle swarm optimization, soft computing and

Keyword: Assessment theory, Item selection strategy, Genetic algorithms, Revision of Bloom’s taxonomy.. Student:Shao-Hsuan Huang

Sharma (1999), “An Intergrated Machine Vision Based System for Solving the Non-Covex Cutting Stock Problem Using Genetic Algorithms,” Journal of Manufacturing Systems, Vol..

Proceedings of the Fifth International Conference on Genetic Algorithms, Morgan kaufmann Publishers, San Mateo, California, pp.110~117, 1996. Horn, J., “Finite Markov Chain Analysis

The proposed algorithms use the optimal-searching technique of genetic algorithm (GA) to get an efficient scheduling solution in grid computing environment and adapt to

This study combined the concepts of service science, orienteering problem, geographic information systems and genetic algorithms to design the feeder bus route.. In