Dr. Kenneth Stanley September 11, 2006

Slides:



Advertisements
Similar presentations
Population-based metaheuristics Nature-inspired Initialize a population A new population of solutions is generated Integrate the new population into the.
Advertisements

Genetic Algorithms Representation of Candidate Solutions GAs on primarily two types of representations: –Binary-Coded –Real-Coded Binary-Coded GAs must.
Non-Linear Problems General approach. Non-linear Optimization Many objective functions, tend to be non-linear. Design problems for which the objective.
Genetic Algorithms1 COMP305. Part II. Genetic Algorithms.
Evolutionary Computational Inteliigence Lecture 6a: Multimodality.
Introduction to Genetic Algorithms Yonatan Shichel.
Genetic Algorithm for Variable Selection
Intro to AI Genetic Algorithm Ruth Bergman Fall 2002.
Tutorial 1 Temi avanzati di Intelligenza Artificiale - Lecture 3 Prof. Vincenzo Cutello Department of Mathematics and Computer Science University of Catania.
CS 447 Advanced Topics in Artificial Intelligence Fall 2002.
Intro to AI Genetic Algorithm Ruth Bergman Fall 2004.
The Standard Genetic Algorithm Dr. Chrisantha Fernando Systems Biology Centre University of Birmingham Dr. Chrisantha Fernando Systems Biology Centre University.
Genetic Algorithm.
SOFT COMPUTING (Optimization Techniques using GA) Dr. N.Uma Maheswari Professor/CSE PSNA CET.
Evolution Strategies Evolutionary Programming Genetic Programming Michael J. Watts
Intro. ANN & Fuzzy Systems Lecture 36 GENETIC ALGORITHM (1)
Genetic Algorithms Michael J. Watts
Outline Introduction Evolution Strategies Genetic Algorithm
An Introduction to Genetic Algorithms Lecture 2 November, 2010 Ivan Garibay
Genetic Algorithms Genetic Algorithms – What are they? And how they are inspired from evolution. Operators and Definitions in Genetic Algorithms paradigm.
1 Machine Learning: Lecture 12 Genetic Algorithms (Based on Chapter 9 of Mitchell, T., Machine Learning, 1997)
Chapter 4.1 Beyond “Classic” Search. What were the pieces necessary for “classic” search.
15/06/2003NORPIE 2004, Trondheim1 Genetic Optimization of Electric Machines, a State of the Art Study S. E. Skaar, R. Nilssen.
Genetic Algorithms What is a GA Terms and definitions Basic algorithm.
Chapter 12 FUSION OF FUZZY SYSTEM AND GENETIC ALGORITHMS Chi-Yuan Yeh.
1. Genetic Algorithms: An Overview  Objectives - Studying basic principle of GA - Understanding applications in prisoner’s dilemma & sorting network.
5. Implementing a GA 4 학습목표 GA 를 사용해 실제 문제를 해결할 때 고려해야 하는 사항에 대해 이해한다 Huge number of choices with little theoretical guidance Implementation issues + sophisticated.
D Nagesh Kumar, IIScOptimization Methods: M8L5 1 Advanced Topics in Optimization Evolutionary Algorithms for Optimization and Search.
1 Autonomic Computer Systems Evolutionary Computation Pascal Paysan.
An Introduction to Genetic Algorithms Lecture 2 November, 2010 Ivan Garibay
Genetic Algorithms. Underlying Concept  Charles Darwin outlined the principle of natural selection.  Natural Selection is the process by which evolution.
Genetic Algorithm Dr. Md. Al-amin Bhuiyan Professor, Dept. of CSE Jahangirnagar University.
Selection and Recombination Temi avanzati di Intelligenza Artificiale - Lecture 4 Prof. Vincenzo Cutello Department of Mathematics and Computer Science.
CAP6938 Neuroevolution and Artificial Embryogeny Evolutionary Computation Theory Dr. Kenneth Stanley January 25, 2006.
Artificial Intelligence By Mr. Ejaz CIIT Sahiwal Evolutionary Computation.
Overview Last two weeks we looked at evolutionary algorithms.
CAP6938 Neuroevolution and Artificial Embryogeny Evolutionary Comptation Dr. Kenneth Stanley January 23, 2006.
Genetic Algorithm. Outline Motivation Genetic algorithms An illustrative example Hypothesis space search.
Introduction to Genetic Algorithms
Using GA’s to Solve Problems
Genetic Algorithms.
An Evolutionary Approach
Evolutionary Algorithms Jim Whitehead
Evolution Strategies Evolutionary Programming
USING MICROBIAL GENETIC ALGORITHM TO SOLVE CARD SPLITTING PROBLEM.
Artificial Intelligence Methods (AIM)
Dr. Kenneth Stanley September 13, 2006
Introduction to Genetic Algorithm (GA)
Evolution strategies Can programs learn?
Dr. Kenneth Stanley September 25, 2006
Example: Applying EC to the TSP Problem
CSC 380: Design and Analysis of Algorithms
Genetic Algorithms, Search Algorithms
CS621: Artificial Intelligence
Basics of Genetic Algorithms (MidTerm – only in RED material)
رایانش تکاملی evolutionary computing
Example: Applying EC to the TSP Problem
GENETIC ALGORITHMS & MACHINE LEARNING
Genetic Algorithms Chapter 3.
Dr. Kenneth Stanley February 6, 2006
Basics of Genetic Algorithms
EE368 Soft Computing Genetic Algorithms.
Searching for solutions: Genetic Algorithms
A Gentle introduction Richard P. Simpson
Machine Learning: UNIT-4 CHAPTER-2
Steady state Selection
Population Based Metaheuristics
A population shares a common gene pool.
CSC 380: Design and Analysis of Algorithms
Population Methods.
Presentation transcript:

Dr. Kenneth Stanley September 11, 2006 CAP6938 Neuroevolution and Developmental Encoding Evolutionary Comptation Dr. Kenneth Stanley September 11, 2006

Main Idea Natural selection can work on computers Selection: Picking the best parents Variation: Mutation and Mating Start with some really bad individuals Some are always better than others Survival of the fittest leads to improvement Progress occurs over generations

Survival of the Roundest Gen 1 Select as parents Gen 2 Select as parents Gen 3 Champ!

Several Versions of EC Genetic Algorithms (Holland 1960s) Evolution Strategies (Rechenberg 1965) Evolution Programming (Fogel 1966) Genetic Programming? (Smith 1980,Koza 1982) The process is more important than the name

Major Concepts Genotype and Phenotype Representation / mapping Evaluation and fitness Generations Steady state Selection Mutation Mating/Crossover/Recombination Premature Convergence Speciation

Genotype and Phenotype Genotype means the code (e.g. DNA) used to the describe an organism, i.e. the “blueprint” Phenotype is the organism’s actual realization 10010110110

Representation and Mapping The genotype is a representation of the phenotype; how to represent information is a profound and deep issue The process of creating the phenotype from the genotype is called the genotype to phenotype mapping Mapping can happen in many ways

Mappings

Evaluation and Fitness The phenotype is evaluated, not the genotype The performance of the phenotype during evaluation is its fitness Fitness tells us which genotypes are better than others

Generations Most GAs proceed in generations: A whole population is evaluated one at a time That is the current generation They then are replaced en masse by their offspring The replacements form the next generation And so on…

Steady State Evolution Not all EC is generational It is possible to replace only one individual at a time, i.e. steady state evolution Common in Evolution Strategies (ES) Also called real-time or online evolution Another twist: Phenotypes can be evaluated simultaneously and asynchronously

Selection Selection means deciding who should be a parent and who should not Selection is usually based on fitness Methods of selection (see Mitchell p.166) Roulette Wheel (probability based on fitness) Truncation (random among top n%) Rank selection (use rank instead of fitness) Elitism (champs get to have clones)

Mutation Mutation means changing the genotype randomly Can vary from strong (every gene mutates) to weak (only one gene mutates) May mean adding a new gene entirely Mutation prevents fixation Mutation is a source of diversity and discovery

Mating Combining one or more genomes Many ways to implement crossover: Singlepoint Multipoint (Uniform) Multipoint average (Linear) How important is crossover? What is it for?

Premature Convergence When a single genotype dominates the population, it is converged Convergence is premature if a suitable solution has not yet been found Premature convergence is a significant concern in EC Hence the need to maintain diversity

Speciation A population can be divided into species Can prevent incompatibles from mating Can protect innovative concepts in niches Maintains diversity Many methods Islands Fitness sharing Crowding

Natural Evolution is not Just Optimization What is the optimum? What is the space being searched? What are the dimensions? Herb Simon (1958): “Satisficing” Is evolution even just a satisficer? Evolution satisfices and complexifies

Next Class: Theoretical Issues in EC The Schema Theorem No Free Lunch Homework: Mitchell pp. 117-38, and ch.5 (pp. 170-177) No Free Lunch Theorems for Optimization by Wolpert and Macready (1996)