New Modifications of Selection Operator in Genetic Algorithms for the Traveling Salesman Problem
|
|
|
- Sarah Joseph
- 10 years ago
- Views:
Transcription
1 New Modifications of Selection Operator in Genetic Algorithms for the Traveling Salesman Problem Radovic, Marija; and Milutinovic, Veljko Abstract One of the algorithms used for solving Traveling Salesman Problem is the genetic algorithm. It consists of three important parts: Selection, Crossover, and Mutation. In this paper some of the important concepts and methods of Selection are described. The paper is divided in two sections. In the first one, some of the most popular selection methods are described and in the second one, some new ideas about improving selection methods using the Internet knowledge are presented. Index Terms Genetic Algorithms, Selection, Traveling Salesman Problem, Semantic Web, Data mining 2. EXISTING SOLUTIONS AND THEIR CRITICISM 2.1 Roulette Wheel Selection Individuals are selected according to their fitness. The better the chromosomes are, the more chances to be selected they have. Imagine a roulette wheel where all the chromosomes in the population are placed. The size of the section in the roulette wheel is proportional to the value of the fitness function of every individual - the bigger the value is, the larger the section is. S 1. INTRODUCTION ELECTION is one of the main operators used in evolutionary computing. The primary objective of the selection operator is to emphasize better solutions in a population. The identification of good or bad solutions in a population is usually accomplished according to a solution s fitness. Selection can be used in different stages of evolutionary algorithms. Some algorithms (specifically genetic algorithms and genetic programming) usually apply the selection operator first to select good solutions and then apply the recombination and mutation operators on these good solutions, to create a hopefully better set of solutions. Other algorithms (evolution strategies and evolutionary programming) prefer using recombination and mutation operator first to create a set of solutions and then use the selection operator to choose a good set of solutions. There are two purposes of this report. One is to give a systematic overview of existing approaches. And the other one is to introduce new approaches based on the usage of the Internet. Manuscript received May, This work was supported in part by the Faculty of Uppsala, Sweden. Radovic Marija is with the Faculty of Mathematics, University of Belgrade, Serbia. Miltinovic Veljko is with the Faculty of Electrical Engineering, University of Belgrade, Serbia. A marble is thrown in the roulette wheel and the chromosome where it stops is selected. Clearly, the chromosomes with bigger fitness value will be selected more times. Algorithm for roulette wheel selection reads: Input: population a Output: population after selection a' /* forming the roulette wheel */ s i :=s i-1 +f i /n /* simulation of throwing the marble */ r:= random([0, s n ]) a i = a k for such k to be accomplished s k - 1 <r<s k Example: 6 random numbers: 0.81, 0.32, 0.96, 0.01, 0.65, Figure 1 shows the selection process of the individuals together with the sample trials. 53
2 Figure 1: Roulette-wheel selection After selection the mating population consists of the individuals: 1, 2, 3, 5, 6, Rank Selection The previous type of selection will have problems when there are big differences between the fitness values. For example, if the best chromosome fitness is 90% of the sum of all fitness s then the other chromosomes will have very few chances to be selected. Rank selection ranks the population first and then every chromosome receives fitness value determined by this ranking. The worst will have the fitness 1, the second worst 2 etc. and the best will have fitness N (number of chromosomes in population). You can see in following picture, how the situation changes after changing fitness to the numbers determined by the ranking. Figure 2: Situation before ranking (graph of fitness s) s i := s i-1 + p s (a i ) /* value p s (a i ) is selection probability */ /* simulation of throwing the marble */ for i: = 1 to n do r := random( [0,s n ]) a i ' := a k for such k to be accomplished s k - 1<r<s k return a' Exponential ranking is different from the linear ranking because an exponential function is used for determination of selection probability. 2.3 Stochastic Universal Sampling Selection The individuals are mapped to contiguous segments of a line, such that each individual's segment is equal in size to its fitness exactly as in roulette-wheel selection. Here equally spaced pointers are placed over the line as many as there are individuals to be selected. Consider NPointer the number of individuals to be selected, then the distance between the pointers are 1/NPointer and the position of the first pointer is given by a randomly generated number in the range [0, 1/NPointer]. For 6 individuals to be selected, the distance between the pointers is 1/6= Figure 4 shows the selection for the following example. 1 random number in the range [0, 0.167]: 0.1. Figure 3: Situation after ranking (graph of order numbers) Now all the chromosomes have a chance to be selected. However this method can lead to slower convergence, because the best chromosomes do not differ so much from other ones. There are two types of ranking selection linear ranking and exponential ranking. Linear ranking assigns a selection probability to each individual that is proportional to the individual s rank (where the rank of the least fit is defined to be zero and rank of the most fit is defined to be m-1, given a population of size m). This method has one parameter: the degree of reproduction of the least fit individual - r. Algorithm for linear ranking: of the least fit individual r in interval [0, l] Output: population after selection a' begjn a := population a sorted in ascing order by fitness value /* forming a roulette wheel */ 54 Figure 4: Stochastic universal sampling After selection the mating population consists of the individuals: 1, 2, 3, 4, 6, 8. Algorithm for stochastic universal sampling: of the least fit individual R in interval [0,l] Output: population after selection a sum := 0 j := 1 ptr := random([0,1]) sum := sum + R i /* R i - the degree of reproduction of the individual a i */ while (sum > ptr) do a j := ai j:=j+1 ptr: = ptr + 1 return a'
3 For more information about the algorithm, see [3]. Stochastic universal sampling ensures a selection of offspring which is closer to what is deserved then roulette wheel selection. 2.4 Tournament Selection Tournament selection is a rank-based method. The probability that an individual will be selected is based only on the rank of that individual in the population ordered by fitness, and not on the size of the fitness. In tournament selection, element of population is chosen for passing into next generation if it is better (has better fitness value) than several randomly selected opponents. Tournament size N tour is selection parameter, n is a size of the population and population after selection is a. Running time for this algorithm is O(n*N tour ). Algorithm for tournament selection: Input: Population a (size of a, tournament size N tour,, N tour N a i := best fitted item among N tour elements randomly selected from population; ; ; An advantage of tournament selection is that it is very easy to implement, and it works very well in a parallel implementation where different individuals are on different processors. 2.5 Fine Grained Tournament Selection This is a variation of tournament selection. Instead of integer parameter N tour (which represents tournament size), new operator allows real valued parameter F tour wanted average tournament size. This parameter governs selection procedure, so average tournament size in population should be as close as possible to it. Algorithm for fine grained tournament selection: Input: Population a (size of a, wished average tournament size F tour, F tour R F - tour := trunc( F tour ) F + tour := trunc( F tour ) + 1 n - := trunc ( n * ( 1 - ( t - trunc ( F tour ) ) ) ) n + := n - trunc ( n * ( 1 - ( t - trunc ( F tour ) ) ) ) /* tournaments with size F - tour */ for i := 1 to n - do a i := best fitted item among F - tour elements randomly selected from population; /* tournaments with size F + tour */ for i := n - +1 to n do 55 a i := best fitted item among F tour + elements randomly selected from population; ; For more information about this method, see [2]. 2.6 Local Selection In local selection every individual resides inside a constrained environment called the local neighborhood. (In the other selection methods the whole population or subpopulation is the selection pool or neighborhood.) Individuals interact only with individuals inside this region. The neighborhood is defined by the structure in which the population is distributed. The neighborhood can be seen as the group of potential mating partners. Figure 5: Linear neighborhood: full and half ring The first step is the selection of the first half of the mating population uniform at random (or using one of the other mentioned selection algorithms, for example, stochastic universal sampling or truncation selection). Now a local neighborhood is defined for every selected individual. Inside this neighborhood the mating partner is selected (best, fitness proportional, or uniform at random). Figure 6: Two-dimensional neighborhood: full and half cross The structure of the neighborhood can be: linear full ring, half ring (see figure 5) two-dimensional full cross, half cross (see figure 6) full star, half star (see figure 7) three-dimensional and more complex with any combination of the above structures.
4 Figure 7: Two-dimensional neighborhood: full and half star The distance between possible neighbors together with the structure determines the size of the neighborhood. Table 1 gives examples for the size of the neighborhood for the given structures and different distance values. Between individuals of a population isolation by distance' exists. The smaller the neighborhood, the bigger the isolation distances. However, because of overlapping neighborhoods, propagation of new variants takes place. This assures the exchange of information between all individuals. Table 1: Number of neighbors for local selection The size of the neighborhood determines the speed of propagation of information between the individuals of a population, thus deciding between rapid propagation or maintenance of a high diversity/variability in the population. A higher variability is often desired, thus preventing problems such as premature convergence to a local minimum. Local selection in a small neighborhood performed better than local selection in a bigger neighborhood. Nevertheless, the interconnection of the whole population must still be provided. Two-dimensional neighborhood with structure half star using a distance of 1 is recommed for local selection. However, if the population is bigger (>100 individuals) a greater distance and/or another two-dimensional neighborhood should be used. Algorithm for local selection: Input: Population a Output: Population after selection a a := population after local selection ; ; Before we can use data mining models and algorithms we have to find the most suitable 56 strategy. In order to do that, we have to detect the problem type. Usually, data mining project involves a combination of different problem types, which together solve the problem [1]. At the lower of the scale of the data mining problems is data description and summarization. It aims at the concise description of characteristics of the data, typically in elementary and aggregated form. This gives us an overview of the structure of the data. The next data mining problem type is problem of segmentation. It aims at the separation of data into interesting and meaningful subgroups or classes. All member of a subgroup contain common characteristics. Misunderstanding of term segmentation is caused by it s relation with classification, which is another data mining problem type. Classification assumes that there is a set of objects that belong to different classes, where some attributes or features characterize each class. The objective is to build classification model which assign correct class label to previously unseen and unlabeled objects (so called predictive modeling). Classification and segmentation may introduce new type of data mining problems; it is a concept description problem. It aims at an understandable description of concepts or classes. The purpose is not to develop complete model with high prediction accuracy, but to gain insights. Another important problem type that occurs in a wide range of application is prediction. The aim of prediction is to find the numerical value of the target attribute for unseen objects. In close connection to the prediction is another problem type, so called depency analyses. It consists of finding a model that describes significant depencies and associations between data items or events. 3. PROPOSED SOLUTION There are two types of information that need to be acquired from the Internet. The first type is information concerning the future. In the process of selection, one more parameter must be acknowledged what is the weather forecast for the route of the boat (truck) at the moment of his transition. If the weather forecast is bad (rain, storms) than the chance for the boat (truck) to go that way should be very small. The second type is the past in what condition is the boat (truck) that is being used. In case of an old boat (truck) chosen routes must be safer (deeper sea for boats or new roads for trucks) than the routes that would be chosen for a new boat (truck). There are some other things that could be considered for the past, such as status of the companies or the maintenance of the boats (trucks).
5 3.1 Internet Improved Roulette Wheel Selection First ranking is done using the knowledge from the Internet. After this ranking, we can start forming the roulette wheel and perform the classical method of roulette wheel selection. Input: Population a Output: population after selection a a:=population a after ranking using the knowledge from the Internet /* forming the roulette wheel */ s i :=s i-1 +f i /n I* simulation of throwing the marble */ r:= random([0, s n ]) a i = a k for such k to be accomplished s k - 1 <r<s k 3.2 Internet Improved Rank Selection Since rank selection is in many ways similar to roulette wheel selection, for improvement of this method we also propose that the knowledge from the Internet is used to rank the individuals before performing the classical rank selection algorithm. of the least fit individual r in interval [0,l] Output: population after selection a a:= population a ranked using the knowledge from the Internet a := population a sorted in ascing order by fitness value /* forming a roulette wheel */ s i := s i-1 + p s (a i ) /* value p s (a i ) is selection probability */ /* simulation of throwing the marble */ for i: = 1 to n do r := random( [0,s n ]) a i := a k for such k to be accomplished s k - 1<r<s k return a 3.3 Internet Improved Stochastic Universal Sampling Selection This method is also similar to roulette wheel so the individuals will be ranked and sorted with the usage of the Internet first and than the classical algorithm will be performed on that new 57 population. of the least fit individual R in interval [0, l] Output: population after selection a a:= population a after being ranked with the knowledge from the Internet sum := 0 j := 1 ptr := random([0,1]) sum := sum + R i /* R i - the degree of reproduction of the individual a i */ while (sum > ptr) do a j := a i j:=j+1 ptr: = ptr + 1 return a' 3.4 Internet Improved Tournament Selection This approach enables Internet to be utilized during the process of selecting the individuals. In every step, after selecting N tour random individuals we can sort them by using the Internet knowledge and then choose the winner among these individuals. Input: Population a (size of a, tournament size N tour,, N tour N randomly choose N tour individuals from a population a sort these individuals using the Internet knowledge a i :=best fitted individual among N tour sorted elements This can also apply to fine grained tournament selection: Input: Population a (size of a, wished average tournament size F tour, F tour R F tour - := trunc( F tour ) F tour + := trunc( F tour ) + 1 n - := trunc ( n * ( 1 - ( t - trunc ( F tour ) ) ) ) n + := n - trunc ( n * ( 1 - ( t - trunc ( F tour ) ) ) )
6 /* tournaments with size F - tour */ for i := 1 to n - do - randomly choose F tour individuals from population a sort these individuals using the Internet knowledge - a i := best fitted item among F tour sorted elements /* tournaments with size F + tour */ for i := n - +1 to n do + randomly choose F tour individuals from population a sort these individuals using the Internet knowledge a i := best fitted item among F + tour sorted elements ; 3.5 Other Improvements We described how Internet knowledge can be used before (roulette wheel, rank, stochastic universal sampling) and during (tournament and fine grained tournament) the classical algorithm. In some cases it can be used after the selection algorithm. That can be done using the fitness function that would contain parameters about future and past knowledge (weather forecast, conditions of the boats or trucks, status of the companies, the history of some routes, the maintenance of the tankers, etc.). But how to define that fitness function is yet to be discovered. 4. PROBLEMS CONCERNING THE INTERNET To gather knowledge from the Internet is another problem we came upon. Information about weather forecast or the condition of the boats (trucks) is not necessarily formatted as text. It can be formatted as pictures or some applications. These kinds of information can not be used in genetic algorithms. What we can use in genetic algorithms are just numbers that represent parameters that dep on this information. So, we need to have optimal association of numerical values to different semantic entities. First, we need to have all the information in a form of text. Then we could associate a certain value to every word (storm, rain, snow, old boat, etc.). But, like we mentioned above, to find these information on the Internet in a form of text is not so common. The best ways of gathering information would be Semantic Web and Data Mining. Semantic Web is a concept that enables better machine processing of information on the Web, by structuring documents written for the Web in such a way that they become understandable by 58 machines. More about Semantic web can be found in [8]. Data Mining can be defined as an automated extraction of predictive information from different data sources. It is a powerful technology with great potential to help users focus on the most important information. More information about data mining can be found in [9]. 5. OPEN PROBLEMS FOR RESEARCH How to assign numerical values in interval [0.1] based on the Internet knowledge that is nonnumeric, but symbolic or semantic? What should be considered to create a fitness function for the past knowledge (status of the companies, conditions of the tankers, the history of some routes, the maintenance of the tankers, etc.)? What should be considered to create a fitness function for the future knowledge (weather forecast, etc.)? How should we define the fitness function? Some examples are: Rnew = Rold * Kp * Kf (Rold is some known fitness function, for example Jaccard's Score, Kp is a parameter that deps of the past, Kf is the parameter that deps on the future). Rnew = Rold * F(Kp) * F(Kf) ( F(Kp) and F(Kf) are some predefined functions of the arguments Kp and Kf ). Rnew = Rold o1 F(Kp) o2 F(Kf) (o1 and o2 are predefined operators) 6. CONCLUSION We need to find a way to make this information from the Internet understandable to the algorithm we are using (definition of the fitness function and numerical values for the Internet knowledge). This is still a part of our research. REFERENCES [1] Gremlich, R., Hamfelt, A., Valkovsky, V., Prediction of the optimal decision distribution for the traveling salesman problem, [2] Filipovic, V., Kratica, J., Tošić, D., Ljubić, I., Fine Grained Tournament Selection for the Simple Plant Location Problem, Proceedings of the 5th Online World Conference on Soft Computing in Industrial Applications WSC5, pp , September [3] Filipovic, V., Predlog poboljsanja operatora turnirske selekcije kod genetskih algoritama, [4] Wright, A., Evolutionary computation, selection methods, [5] Sushil, J., L., Modified GAs for TSPs, [6] Obitko, M., Introduction to Genetic Algorithms, [7] Pohlheim, H., Evolutionary Algorithms: Overview, Methods and Operators, Documentation for: Genetic and Evolutionary Algorithm Toolbox for use with Matlab (November 2001). [8] Vujovic, Neuhold, E., Fankhauser, P., Nierderee, C., Milutinovic, V., Semantic Web: A Brief Overview and IPSI Belgrade Research, Annals Of Mathematics, Computing & Teleinformartics, Vol 1, No 1, 2003, PP [9] Radivojevic, Z., Cvetanovic, M., Milutinovic, V., Data Mining: A Brief Overview and IPSI Belgrade Research, Annals Of Mathematics, Computing & Teleinformatics, Vol 1, No 1, 2003, PP 84-90
Alpha Cut based Novel Selection for Genetic Algorithm
Alpha Cut based Novel for Genetic Algorithm Rakesh Kumar Professor Girdhar Gopal Research Scholar Rajesh Kumar Assistant Professor ABSTRACT Genetic algorithm (GA) has several genetic operators that can
Genetic Algorithms commonly used selection, replacement, and variation operators Fernando Lobo University of Algarve
Genetic Algorithms commonly used selection, replacement, and variation operators Fernando Lobo University of Algarve Outline Selection methods Replacement methods Variation operators Selection Methods
Introduction To Genetic Algorithms
1 Introduction To Genetic Algorithms Dr. Rajib Kumar Bhattacharjya Department of Civil Engineering IIT Guwahati Email: [email protected] References 2 D. E. Goldberg, Genetic Algorithm In Search, Optimization
A Robust Method for Solving Transcendental Equations
www.ijcsi.org 413 A Robust Method for Solving Transcendental Equations Md. Golam Moazzam, Amita Chakraborty and Md. Al-Amin Bhuiyan Department of Computer Science and Engineering, Jahangirnagar University,
Genetic Algorithm Performance with Different Selection Strategies in Solving TSP
Proceedings of the World Congress on Engineering Vol II WCE, July 6-8,, London, U.K. Genetic Algorithm Performance with Different Selection Strategies in Solving TSP Noraini Mohd Razali, John Geraghty
College of information technology Department of software
University of Babylon Undergraduate: third class College of information technology Department of software Subj.: Application of AI lecture notes/2011-2012 ***************************************************************************
Volume 3, Issue 2, February 2015 International Journal of Advance Research in Computer Science and Management Studies
Volume 3, Issue 2, February 2015 International Journal of Advance Research in Computer Science and Management Studies Research Article / Survey Paper / Case Study Available online at: www.ijarcsms.com
A Fast Computational Genetic Algorithm for Economic Load Dispatch
A Fast Computational Genetic Algorithm for Economic Load Dispatch M.Sailaja Kumari 1, M.Sydulu 2 Email: 1 [email protected] 1, 2 Department of Electrical Engineering National Institute of Technology,
Asexual Versus Sexual Reproduction in Genetic Algorithms 1
Asexual Versus Sexual Reproduction in Genetic Algorithms Wendy Ann Deslauriers ([email protected]) Institute of Cognitive Science,Room 22, Dunton Tower Carleton University, 25 Colonel By Drive
ISSN: 2319-5967 ISO 9001:2008 Certified International Journal of Engineering Science and Innovative Technology (IJESIT) Volume 2, Issue 3, May 2013
Transistor Level Fault Finding in VLSI Circuits using Genetic Algorithm Lalit A. Patel, Sarman K. Hadia CSPIT, CHARUSAT, Changa., CSPIT, CHARUSAT, Changa Abstract This paper presents, genetic based algorithm
Numerical Research on Distributed Genetic Algorithm with Redundant
Numerical Research on Distributed Genetic Algorithm with Redundant Binary Number 1 Sayori Seto, 2 Akinori Kanasugi 1,2 Graduate School of Engineering, Tokyo Denki University, Japan [email protected],
Lab 4: 26 th March 2012. Exercise 1: Evolutionary algorithms
Lab 4: 26 th March 2012 Exercise 1: Evolutionary algorithms 1. Found a problem where EAs would certainly perform very poorly compared to alternative approaches. Explain why. Suppose that we want to find
Evolutionary Detection of Rules for Text Categorization. Application to Spam Filtering
Advances in Intelligent Systems and Technologies Proceedings ECIT2004 - Third European Conference on Intelligent Systems and Technologies Iasi, Romania, July 21-23, 2004 Evolutionary Detection of Rules
Genetic Algorithm. Based on Darwinian Paradigm. Intrinsically a robust search and optimization mechanism. Conceptual Algorithm
24 Genetic Algorithm Based on Darwinian Paradigm Reproduction Competition Survive Selection Intrinsically a robust search and optimization mechanism Slide -47 - Conceptual Algorithm Slide -48 - 25 Genetic
A Parallel Processor for Distributed Genetic Algorithm with Redundant Binary Number
A Parallel Processor for Distributed Genetic Algorithm with Redundant Binary Number 1 Tomohiro KAMIMURA, 2 Akinori KANASUGI 1 Department of Electronics, Tokyo Denki University, [email protected]
Genetic Algorithms and Sudoku
Genetic Algorithms and Sudoku Dr. John M. Weiss Department of Mathematics and Computer Science South Dakota School of Mines and Technology (SDSM&T) Rapid City, SD 57701-3995 [email protected] MICS 2009
Evolutionary SAT Solver (ESS)
Ninth LACCEI Latin American and Caribbean Conference (LACCEI 2011), Engineering for a Smart Planet, Innovation, Information Technology and Computational Tools for Sustainable Development, August 3-5, 2011,
International Journal of Software and Web Sciences (IJSWS) www.iasir.net
International Association of Scientific Innovation and Research (IASIR) (An Association Unifying the Sciences, Engineering, and Applied Research) ISSN (Print): 2279-0063 ISSN (Online): 2279-0071 International
A Brief Study of the Nurse Scheduling Problem (NSP)
A Brief Study of the Nurse Scheduling Problem (NSP) Lizzy Augustine, Morgan Faer, Andreas Kavountzis, Reema Patel Submitted Tuesday December 15, 2009 0. Introduction and Background Our interest in the
Keywords revenue management, yield management, genetic algorithm, airline reservation
Volume 4, Issue 1, January 2014 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com A Revenue Management
Modified Version of Roulette Selection for Evolution Algorithms - the Fan Selection
Modified Version of Roulette Selection for Evolution Algorithms - the Fan Selection Adam S lowik, Micha l Bia lko Department of Electronic, Technical University of Koszalin, ul. Śniadeckich 2, 75-453 Koszalin,
Cellular Automaton: The Roulette Wheel and the Landscape Effect
Cellular Automaton: The Roulette Wheel and the Landscape Effect Ioan Hălălae Faculty of Engineering, Eftimie Murgu University, Traian Vuia Square 1-4, 385 Reşiţa, Romania Phone: +40 255 210227, Fax: +40
A hybrid Approach of Genetic Algorithm and Particle Swarm Technique to Software Test Case Generation
A hybrid Approach of Genetic Algorithm and Particle Swarm Technique to Software Test Case Generation Abhishek Singh Department of Information Technology Amity School of Engineering and Technology Amity
The Dynamics of a Genetic Algorithm on a Model Hard Optimization Problem
The Dynamics of a Genetic Algorithm on a Model Hard Optimization Problem Alex Rogers Adam Prügel-Bennett Image, Speech, and Intelligent Systems Research Group, Department of Electronics and Computer Science,
A Genetic Algorithm Approach for Solving a Flexible Job Shop Scheduling Problem
A Genetic Algorithm Approach for Solving a Flexible Job Shop Scheduling Problem Sayedmohammadreza Vaghefinezhad 1, Kuan Yew Wong 2 1 Department of Manufacturing & Industrial Engineering, Faculty of Mechanical
Simulating the Multiple Time-Period Arrival in Yield Management
Simulating the Multiple Time-Period Arrival in Yield Management P.K.Suri #1, Rakesh Kumar #2, Pardeep Kumar Mittal #3 #1 Dean(R&D), Chairman & Professor(CSE/IT/MCA), H.C.T.M., Kaithal(Haryana), India #2
An Overview of Knowledge Discovery Database and Data mining Techniques
An Overview of Knowledge Discovery Database and Data mining Techniques Priyadharsini.C 1, Dr. Antony Selvadoss Thanamani 2 M.Phil, Department of Computer Science, NGM College, Pollachi, Coimbatore, Tamilnadu,
Model-based Parameter Optimization of an Engine Control Unit using Genetic Algorithms
Symposium on Automotive/Avionics Avionics Systems Engineering (SAASE) 2009, UC San Diego Model-based Parameter Optimization of an Engine Control Unit using Genetic Algorithms Dipl.-Inform. Malte Lochau
Genetic Algorithm TOOLBOX. For Use with MATLAB. Andrew Chipperfield Peter Fleming Hartmut Pohlheim Carlos Fonseca. Version 1.2.
Genetic Algorithm TOOLBOX For Use with MATLAB Andrew Chipperfield Peter Fleming Hartmut Pohlheim Carlos Fonseca Version 1.2 User s Guide Acknowledgements The production of this Toolbox was made possible
A Framework for Genetic Algorithms in Games
A Framework for Genetic Algorithms in Games Vinícius Godoy de Mendonça Cesar Tadeu Pozzer Roberto Tadeu Raiitz 1 Universidade Positivo, Departamento de Informática 2 Universidade Federal de Santa Maria,
Comparison of Major Domination Schemes for Diploid Binary Genetic Algorithms in Dynamic Environments
Comparison of Maor Domination Schemes for Diploid Binary Genetic Algorithms in Dynamic Environments A. Sima UYAR and A. Emre HARMANCI Istanbul Technical University Computer Engineering Department Maslak
A Genetic Algorithm Processor Based on Redundant Binary Numbers (GAPBRBN)
ISSN: 2278 1323 All Rights Reserved 2014 IJARCET 3910 A Genetic Algorithm Processor Based on Redundant Binary Numbers (GAPBRBN) Miss: KIRTI JOSHI Abstract A Genetic Algorithm (GA) is an intelligent search
Solving the Vehicle Routing Problem with Genetic Algorithms
Solving the Vehicle Routing Problem with Genetic Algorithms Áslaug Sóley Bjarnadóttir April 2004 Informatics and Mathematical Modelling, IMM Technical University of Denmark, DTU Printed by IMM, DTU 3 Preface
Genetic Algorithm Evolution of Cellular Automata Rules for Complex Binary Sequence Prediction
Brill Academic Publishers P.O. Box 9000, 2300 PA Leiden, The Netherlands Lecture Series on Computer and Computational Sciences Volume 1, 2005, pp. 1-6 Genetic Algorithm Evolution of Cellular Automata Rules
D A T A M I N I N G C L A S S I F I C A T I O N
D A T A M I N I N G C L A S S I F I C A T I O N FABRICIO VOZNIKA LEO NARDO VIA NA INTRODUCTION Nowadays there is huge amount of data being collected and stored in databases everywhere across the globe.
CHAPTER 6 GENETIC ALGORITHM OPTIMIZED FUZZY CONTROLLED MOBILE ROBOT
77 CHAPTER 6 GENETIC ALGORITHM OPTIMIZED FUZZY CONTROLLED MOBILE ROBOT 6.1 INTRODUCTION The idea of evolutionary computing was introduced by (Ingo Rechenberg 1971) in his work Evolutionary strategies.
Forecasting methods applied to engineering management
Forecasting methods applied to engineering management Áron Szász-Gábor Abstract. This paper presents arguments for the usefulness of a simple forecasting application package for sustaining operational
APPLICATION OF ADVANCED SEARCH- METHODS FOR AUTOMOTIVE DATA-BUS SYSTEM SIGNAL INTEGRITY OPTIMIZATION
APPLICATION OF ADVANCED SEARCH- METHODS FOR AUTOMOTIVE DATA-BUS SYSTEM SIGNAL INTEGRITY OPTIMIZATION Harald Günther 1, Stephan Frei 1, Thomas Wenzel, Wolfgang Mickisch 1 Technische Universität Dortmund,
14.10.2014. Overview. Swarms in nature. Fish, birds, ants, termites, Introduction to swarm intelligence principles Particle Swarm Optimization (PSO)
Overview Kyrre Glette kyrrehg@ifi INF3490 Swarm Intelligence Particle Swarm Optimization Introduction to swarm intelligence principles Particle Swarm Optimization (PSO) 3 Swarms in nature Fish, birds,
An ant colony optimization for single-machine weighted tardiness scheduling with sequence-dependent setups
Proceedings of the 6th WSEAS International Conference on Simulation, Modelling and Optimization, Lisbon, Portugal, September 22-24, 2006 19 An ant colony optimization for single-machine weighted tardiness
Data Mining Project Report. Document Clustering. Meryem Uzun-Per
Data Mining Project Report Document Clustering Meryem Uzun-Per 504112506 Table of Content Table of Content... 2 1. Project Definition... 3 2. Literature Survey... 3 3. Methods... 4 3.1. K-means algorithm...
Practical Applications of Evolutionary Computation to Financial Engineering
Hitoshi Iba and Claus C. Aranha Practical Applications of Evolutionary Computation to Financial Engineering Robust Techniques for Forecasting, Trading and Hedging 4Q Springer Contents 1 Introduction to
Memory Allocation Technique for Segregated Free List Based on Genetic Algorithm
Journal of Al-Nahrain University Vol.15 (2), June, 2012, pp.161-168 Science Memory Allocation Technique for Segregated Free List Based on Genetic Algorithm Manal F. Younis Computer Department, College
Improving the Performance of a Computer-Controlled Player in a Maze Chase Game using Evolutionary Programming on a Finite-State Machine
Improving the Performance of a Computer-Controlled Player in a Maze Chase Game using Evolutionary Programming on a Finite-State Machine Maximiliano Miranda and Federico Peinado Departamento de Ingeniería
Influence of Load Balancing on Quality of Real Time Data Transmission*
SERBIAN JOURNAL OF ELECTRICAL ENGINEERING Vol. 6, No. 3, December 2009, 515-524 UDK: 004.738.2 Influence of Load Balancing on Quality of Real Time Data Transmission* Nataša Maksić 1,a, Petar Knežević 2,
Optimization of sampling strata with the SamplingStrata package
Optimization of sampling strata with the SamplingStrata package Package version 1.1 Giulio Barcaroli January 12, 2016 Abstract In stratified random sampling the problem of determining the optimal size
Solving Three-objective Optimization Problems Using Evolutionary Dynamic Weighted Aggregation: Results and Analysis
Solving Three-objective Optimization Problems Using Evolutionary Dynamic Weighted Aggregation: Results and Analysis Abstract. In this paper, evolutionary dynamic weighted aggregation methods are generalized
Data Mining and Knowledge Discovery in Databases (KDD) State of the Art. Prof. Dr. T. Nouri Computer Science Department FHNW Switzerland
Data Mining and Knowledge Discovery in Databases (KDD) State of the Art Prof. Dr. T. Nouri Computer Science Department FHNW Switzerland 1 Conference overview 1. Overview of KDD and data mining 2. Data
A Non-Linear Schema Theorem for Genetic Algorithms
A Non-Linear Schema Theorem for Genetic Algorithms William A Greene Computer Science Department University of New Orleans New Orleans, LA 70148 bill@csunoedu 504-280-6755 Abstract We generalize Holland
Original Article Efficient Genetic Algorithm on Linear Programming Problem for Fittest Chromosomes
International Archive of Applied Sciences and Technology Volume 3 [2] June 2012: 47-57 ISSN: 0976-4828 Society of Education, India Website: www.soeagra.com/iaast/iaast.htm Original Article Efficient Genetic
Package NHEMOtree. February 19, 2015
Type Package Package NHEMOtree February 19, 2015 Title Non-hierarchical evolutionary multi-objective tree learner to perform cost-sensitive classification Depends partykit, emoa, sets, rpart Version 1.0
An evolutionary learning spam filter system
An evolutionary learning spam filter system Catalin Stoean 1, Ruxandra Gorunescu 2, Mike Preuss 3, D. Dumitrescu 4 1 University of Craiova, Romania, [email protected] 2 University of Craiova, Romania,
How To Analyze Performance From A Genetic Algorithm
Lima RESEARCH An Genetic Algorithm Approach for Profiling Computational Performance Measures Matheus S Lima Correspondence: [email protected] Department of Computer Science, Federal University
International Journal of Advanced Research in Electrical, Electronics and Instrumentation Engineering
DOI: 10.15662/ijareeie.2014.0307061 Economic Dispatch of Power System Optimization with Power Generation Schedule Using Evolutionary Technique Girish Kumar 1, Rameshwar singh 2 PG Student [Control system],
Neural Network and Genetic Algorithm Based Trading Systems. Donn S. Fishbein, MD, PhD Neuroquant.com
Neural Network and Genetic Algorithm Based Trading Systems Donn S. Fishbein, MD, PhD Neuroquant.com Consider the challenge of constructing a financial market trading system using commonly available technical
An Introduction to Data Mining
An Introduction to Intel Beijing [email protected] January 17, 2014 Outline 1 DW Overview What is Notable Application of Conference, Software and Applications Major Process in 2 Major Tasks in Detail
Empirically Identifying the Best Genetic Algorithm for Covering Array Generation
Empirically Identifying the Best Genetic Algorithm for Covering Array Generation Liang Yalan 1, Changhai Nie 1, Jonathan M. Kauffman 2, Gregory M. Kapfhammer 2, Hareton Leung 3 1 Department of Computer
Integer Programming: Algorithms - 3
Week 9 Integer Programming: Algorithms - 3 OPR 992 Applied Mathematical Programming OPR 992 - Applied Mathematical Programming - p. 1/12 Dantzig-Wolfe Reformulation Example Strength of the Linear Programming
A Hybrid Tabu Search Method for Assembly Line Balancing
Proceedings of the 7th WSEAS International Conference on Simulation, Modelling and Optimization, Beijing, China, September 15-17, 2007 443 A Hybrid Tabu Search Method for Assembly Line Balancing SUPAPORN
A Novel Constraint Handling Strategy for Expensive Optimization Problems
th World Congress on Structural and Multidisciplinary Optimization 7 th - 2 th, June 25, Sydney Australia A Novel Constraint Handling Strategy for Expensive Optimization Problems Kalyan Shankar Bhattacharjee,
6 Creating the Animation
6 Creating the Animation Now that the animation can be represented, stored, and played back, all that is left to do is understand how it is created. This is where we will use genetic algorithms, and this
Effect of Using Neural Networks in GA-Based School Timetabling
Effect of Using Neural Networks in GA-Based School Timetabling JANIS ZUTERS Department of Computer Science University of Latvia Raina bulv. 19, Riga, LV-1050 LATVIA [email protected] Abstract: - The school
Estimation of the COCOMO Model Parameters Using Genetic Algorithms for NASA Software Projects
Journal of Computer Science 2 (2): 118-123, 2006 ISSN 1549-3636 2006 Science Publications Estimation of the COCOMO Model Parameters Using Genetic Algorithms for NASA Software Projects Alaa F. Sheta Computers
Performance Workload Design
Performance Workload Design The goal of this paper is to show the basic principles involved in designing a workload for performance and scalability testing. We will understand how to achieve these principles
Using News Articles to Predict Stock Price Movements
Using News Articles to Predict Stock Price Movements Győző Gidófalvi Department of Computer Science and Engineering University of California, San Diego La Jolla, CA 9237 [email protected] 21, June 15,
HYBRID GENETIC ALGORITHMS FOR SCHEDULING ADVERTISEMENTS ON A WEB PAGE
HYBRID GENETIC ALGORITHMS FOR SCHEDULING ADVERTISEMENTS ON A WEB PAGE Subodha Kumar University of Washington [email protected] Varghese S. Jacob University of Texas at Dallas [email protected]
A Review And Evaluations Of Shortest Path Algorithms
A Review And Evaluations Of Shortest Path Algorithms Kairanbay Magzhan, Hajar Mat Jani Abstract: Nowadays, in computer networks, the routing is based on the shortest path problem. This will help in minimizing
Automatic Generation of a Neural Network Architecture Using Evolutionary Computation
Automatic Generation of a Neural Network Architecture Using Evolutionary Computation E. Vonk *, L.C. Jain **, L.P.J. Veelenturf *, and R. Johnson *** *Control, Systems and Computer Engineering Group (BSC),
Spare Parts Inventory Model for Auto Mobile Sector Using Genetic Algorithm
Parts Inventory Model for Auto Mobile Sector Using Genetic Algorithm S. Godwin Barnabas, I. Ambrose Edward, and S.Thandeeswaran Abstract In this paper the objective is to determine the optimal allocation
A Study of Crossover Operators for Genetic Algorithm and Proposal of a New Crossover Operator to Solve Open Shop Scheduling Problem
American Journal of Industrial and Business Management, 2016, 6, 774-789 Published Online June 2016 in SciRes. http://www.scirp.org/journal/ajibm http://dx.doi.org/10.4236/ajibm.2016.66071 A Study of Crossover
6 Scalar, Stochastic, Discrete Dynamic Systems
47 6 Scalar, Stochastic, Discrete Dynamic Systems Consider modeling a population of sand-hill cranes in year n by the first-order, deterministic recurrence equation y(n + 1) = Ry(n) where R = 1 + r = 1
Stock price prediction using genetic algorithms and evolution strategies
Stock price prediction using genetic algorithms and evolution strategies Ganesh Bonde Institute of Artificial Intelligence University Of Georgia Athens,GA-30601 Email: [email protected] Rasheed Khaled Institute
Data Mining Cluster Analysis: Basic Concepts and Algorithms. Lecture Notes for Chapter 8. Introduction to Data Mining
Data Mining Cluster Analysis: Basic Concepts and Algorithms Lecture Notes for Chapter 8 by Tan, Steinbach, Kumar 1 What is Cluster Analysis? Finding groups of objects such that the objects in a group will
Programming Risk Assessment Models for Online Security Evaluation Systems
Programming Risk Assessment Models for Online Security Evaluation Systems Ajith Abraham 1, Crina Grosan 12, Vaclav Snasel 13 1 Machine Intelligence Research Labs, MIR Labs, http://www.mirlabs.org 2 Babes-Bolyai
International Journal of Computer Science Trends and Technology (IJCST) Volume 2 Issue 3, May-Jun 2014
RESEARCH ARTICLE OPEN ACCESS A Survey of Data Mining: Concepts with Applications and its Future Scope Dr. Zubair Khan 1, Ashish Kumar 2, Sunny Kumar 3 M.Tech Research Scholar 2. Department of Computer
Evolutionary Algorithms Software
Evolutionary Algorithms Software Prof. Dr. Rudolf Kruse Pascal Held {kruse,pheld}@iws.cs.uni-magdeburg.de Otto-von-Guericke-Universität Magdeburg Fakultät für Informatik Institut für Wissens- und Sprachverarbeitung
Management Science Letters
Management Science Letters 4 (2014) 905 912 Contents lists available at GrowingScience Management Science Letters homepage: www.growingscience.com/msl Measuring customer loyalty using an extended RFM and
Genetic Algorithms for Bridge Maintenance Scheduling. Master Thesis
Genetic Algorithms for Bridge Maintenance Scheduling Yan ZHANG Master Thesis 1st Examiner: Prof. Dr. Hans-Joachim Bungartz 2nd Examiner: Prof. Dr. rer.nat. Ernst Rank Assistant Advisor: DIPL.-ING. Katharina
The Binary Genetic Algorithm
CHAPTER 2 The Binary Genetic Algorithm 2.1 GENETIC ALGORITHMS: NATURAL SELECTION ON A COMPUTER If the previous chapter whet your appetite for something better than the traditional optimization methods,
ATM Network Performance Evaluation And Optimization Using Complex Network Theory
ATM Network Performance Evaluation And Optimization Using Complex Network Theory Yalin LI 1, Bruno F. Santos 2 and Richard Curran 3 Air Transport and Operations Faculty of Aerospace Engineering The Technical
Roulette Wheel Selection Model based on Virtual Machine Weight for Load Balancing in Cloud Computing
IOSR Journal of Computer Engineering (IOSR-JCE) e-issn: 2278-0661,p-ISSN: 2278-8727, Volume 16, Issue 5, Ver. VII (Sep Oct. 2014), PP 65-70 Roulette Wheel Selection Model based on Virtual Machine Weight
COMPUTATIONIMPROVEMENTOFSTOCKMARKETDECISIONMAKING MODELTHROUGHTHEAPPLICATIONOFGRID. Jovita Nenortaitė
ISSN 1392 124X INFORMATION TECHNOLOGY AND CONTROL, 2005, Vol.34, No.3 COMPUTATIONIMPROVEMENTOFSTOCKMARKETDECISIONMAKING MODELTHROUGHTHEAPPLICATIONOFGRID Jovita Nenortaitė InformaticsDepartment,VilniusUniversityKaunasFacultyofHumanities
Feature Selection using Integer and Binary coded Genetic Algorithm to improve the performance of SVM Classifier
Feature Selection using Integer and Binary coded Genetic Algorithm to improve the performance of SVM Classifier D.Nithya a, *, V.Suganya b,1, R.Saranya Irudaya Mary c,1 Abstract - This paper presents,
Gerard Mc Nulty Systems Optimisation Ltd [email protected]/0876697867 BA.,B.A.I.,C.Eng.,F.I.E.I
Gerard Mc Nulty Systems Optimisation Ltd [email protected]/0876697867 BA.,B.A.I.,C.Eng.,F.I.E.I Data is Important because it: Helps in Corporate Aims Basis of Business Decisions Engineering Decisions Energy
Heuristics for the Sorting by Length-Weighted Inversions Problem on Signed Permutations
Heuristics for the Sorting by Length-Weighted Inversions Problem on Signed Permutations AlCoB 2014 First International Conference on Algorithms for Computational Biology Thiago da Silva Arruda Institute
Marketing Mix Modelling and Big Data P. M Cain
1) Introduction Marketing Mix Modelling and Big Data P. M Cain Big data is generally defined in terms of the volume and variety of structured and unstructured information. Whereas structured data is stored
A Study of Web Log Analysis Using Clustering Techniques
A Study of Web Log Analysis Using Clustering Techniques Hemanshu Rana 1, Mayank Patel 2 Assistant Professor, Dept of CSE, M.G Institute of Technical Education, Gujarat India 1 Assistant Professor, Dept
A Genetic Algorithm-Evolved 3D Point Cloud Descriptor
A Genetic Algorithm-Evolved 3D Point Cloud Descriptor Dominik Wȩgrzyn and Luís A. Alexandre IT - Instituto de Telecomunicações Dept. of Computer Science, Univ. Beira Interior, 6200-001 Covilhã, Portugal
A Fast and Elitist Multiobjective Genetic Algorithm: NSGA-II
182 IEEE TRANSACTIONS ON EVOLUTIONARY COMPUTATION, VOL. 6, NO. 2, APRIL 2002 A Fast and Elitist Multiobjective Genetic Algorithm: NSGA-II Kalyanmoy Deb, Associate Member, IEEE, Amrit Pratap, Sameer Agarwal,
Data, Measurements, Features
Data, Measurements, Features Middle East Technical University Dep. of Computer Engineering 2009 compiled by V. Atalay What do you think of when someone says Data? We might abstract the idea that data are
Vol. 35, No. 3, Sept 30,2000 ملخص تعتبر الخوارزمات الجينية واحدة من أفضل طرق البحث من ناحية األداء. فبالرغم من أن استخدام هذه الطريقة ال يعطي الحل
AIN SHAMS UNIVERSITY FACULTY OF ENGINEERING Vol. 35, No. 3, Sept 30,2000 SCIENTIFIC BULLETIN Received on : 3/9/2000 Accepted on: 28/9/2000 pp : 337-348 GENETIC ALGORITHMS AND ITS USE WITH BACK- PROPAGATION
SIMULATING CANCELLATIONS AND OVERBOOKING IN YIELD MANAGEMENT
CHAPTER 8 SIMULATING CANCELLATIONS AND OVERBOOKING IN YIELD MANAGEMENT In YM, one of the major problems in maximizing revenue is the number of cancellations. In industries implementing YM this is very
Spatial Interaction Model Optimisation on. Parallel Computers
To appear in "Concurrency: Practice and Experience", 1994. Spatial Interaction Model Optimisation on Parallel Computers Felicity George, Nicholas Radcliffe, Mark Smith Edinburgh Parallel Computing Centre,
A Basic Guide to Modeling Techniques for All Direct Marketing Challenges
A Basic Guide to Modeling Techniques for All Direct Marketing Challenges Allison Cornia Database Marketing Manager Microsoft Corporation C. Olivia Rud Executive Vice President Data Square, LLC Overview
Beating the NCAA Football Point Spread
Beating the NCAA Football Point Spread Brian Liu Mathematical & Computational Sciences Stanford University Patrick Lai Computer Science Department Stanford University December 10, 2010 1 Introduction Over
Automated SEO. A Market Brew White Paper
Automated SEO A Market Brew White Paper Abstract In this paper, we use the term Reach to suggest the forecasted traffic to a particular webpage or website. Reach is a traffic metric that describes an expected
