understanding diversity and recombination in simple
play

Understanding Diversity and Recombination in Simple Evolutionary - PowerPoint PPT Presentation

Understanding Diversity and Recombination in Simple Evolutionary Algorithms Dirk Sudholt University of Sheffield This project has received funding from the European Unions Seventh Framework Programme for research, technological development


  1. Understanding Diversity and Recombination in Simple Evolutionary Algorithms Dirk Sudholt University of Sheffield This project has received funding from the European Union’s Seventh Framework Programme for research, technological development and demonstration under grant agreement no 618091 (SAGE). Dirk Sudholt Understanding Diversity and Recombination in Simple Evolutionary Algorithms 1 / 8

  2. Evolutionary Operators Consider bit strings of n bits. Standard bit mutation Flip each bit independently with a fixed probability 1 / n . Dirk Sudholt Understanding Diversity and Recombination in Simple Evolutionary Algorithms 2 / 8

  3. Evolutionary Operators Consider bit strings of n bits. Standard bit mutation Flip each bit independently with a fixed probability 1 / n . Uniform crossover 1 0 1 1 0 1 1 0 1 0 0 1 1 1 1 0 Dirk Sudholt Understanding Diversity and Recombination in Simple Evolutionary Algorithms 2 / 8

  4. Where crossover provably helps Constructed example functions Jump k [Jansen and Wegener, 2002] [K¨ otzing, Sudholt, and Theile, 2011] Real Royal Road functions [Jansen & Wegener, 2005] [Storch & Wegener, 2004] H-IFF [Dietzfelbinger, Naudts, van Hoyweghen, and Wegener, 2003] building-block Real Royal Roads [Watson and Jansen, 2007] Dirk Sudholt Understanding Diversity and Recombination in Simple Evolutionary Algorithms 3 / 8

  5. Where crossover provably helps Constructed example functions Jump k [Jansen and Wegener, 2002] [K¨ otzing, Sudholt, and Theile, 2011] Real Royal Road functions [Jansen & Wegener, 2005] [Storch & Wegener, 2004] H-IFF [Dietzfelbinger, Naudts, van Hoyweghen, and Wegener, 2003] building-block Real Royal Roads [Watson and Jansen, 2007] Ising model / vertex colouring ring graphs [Fischer and Wegener, 2005] binary trees [Sudholt, 2005] Dirk Sudholt Understanding Diversity and Recombination in Simple Evolutionary Algorithms 3 / 8

  6. Where crossover provably helps Constructed example functions Jump k [Jansen and Wegener, 2002] [K¨ otzing, Sudholt, and Theile, 2011] Real Royal Road functions [Jansen & Wegener, 2005] [Storch & Wegener, 2004] H-IFF [Dietzfelbinger, Naudts, van Hoyweghen, and Wegener, 2003] building-block Real Royal Roads [Watson and Jansen, 2007] Ising model / vertex colouring ring graphs [Fischer and Wegener, 2005] binary trees [Sudholt, 2005] All-pairs shortest paths evolutionary algorithms [Doerr, Happ, and Klein, 2008] , [Doerr and Theile, 2009] , [Doerr, Johannsen, K¨ otzing, Neumann, and Theile, 2010] ant colony optimization [Sudholt and Thyssen, 2011] multi-objective shortest paths [Neumann and Theile, 2010] Dirk Sudholt Understanding Diversity and Recombination in Simple Evolutionary Algorithms 3 / 8

  7. Scheme of a ( µ +1) Genetic Algorithm Initialize population P of size µ ∈ N uniformly at random. while not stopping do Select x 1 , x 2 ∈ P uniformly at random. Let y := uniform crossover( x 1 , x 2 ). Flip each bit in y independently with probability 1 / n . Let P contain the µ best individuals from P ∪ { y } . end Dirk Sudholt Understanding Diversity and Recombination in Simple Evolutionary Algorithms 4 / 8

  8. Scheme of a ( µ +1) Genetic Algorithm Initialize population P of size µ ∈ N uniformly at random. while not stopping do Select x 1 , x 2 ∈ P uniformly at random. Let y := uniform crossover( x 1 , x 2 ). Flip each bit in y independently with probability 1 / n . Let P contain the µ best individuals from P ∪ { y } . end Let’s consider this GA on OneMax ( x ) := � n i =1 x i . Aka additive model, Mount Fuji, Hamming distance problem, Onesmax, . . . Dirk Sudholt Understanding Diversity and Recombination in Simple Evolutionary Algorithms 4 / 8

  9. Experiments: Benefit of Uniform Crossover EA (no crossover) versus GA (uniform crossover) · 10 5 · 10 5 2 . 5 (100+1) EA (100+1) EA 3 (100+1) GA (100+1) GA 2 2 1 . 5 1 1 0 . 5 0 0 0 500 1 , 000 1 , 500 2 , 000 0 500 1 , 000 1 , 500 2 , 000 n n random weights from [0 , 1] OneMax First impressions: performance gap seems to grow with µ and n . Dirk Sudholt Understanding Diversity and Recombination in Simple Evolutionary Algorithms 5 / 8

  10. What we know Expected time of the (1+1) Evolutionary Algorithm is en ln( n ) − O ( n ). Dirk Sudholt Understanding Diversity and Recombination in Simple Evolutionary Algorithms 6 / 8

  11. What we know Expected time of the (1+1) Evolutionary Algorithm is en ln( n ) − O ( n ). Mutation only is inefficient for large populations No crossover: lower runtime bound of Ω( µ n + n log n ) [Witt, 2006] . Dirk Sudholt Understanding Diversity and Recombination in Simple Evolutionary Algorithms 6 / 8

  12. What we know Expected time of the (1+1) Evolutionary Algorithm is en ln( n ) − O ( n ). Mutation only is inefficient for large populations No crossover: lower runtime bound of Ω( µ n + n log n ) [Witt, 2006] . Constant-factor speedup Small populations ( µ = o ((log n ) / log log n ))) make GAs twice as fast as the best mutation-only algorithm [Sudholt, 2016] . Dirk Sudholt Understanding Diversity and Recombination in Simple Evolutionary Algorithms 6 / 8

  13. What we know Expected time of the (1+1) Evolutionary Algorithm is en ln( n ) − O ( n ). Mutation only is inefficient for large populations No crossover: lower runtime bound of Ω( µ n + n log n ) [Witt, 2006] . Constant-factor speedup Small populations ( µ = o ((log n ) / log log n ))) make GAs twice as fast as the best mutation-only algorithm [Sudholt, 2016] . Superconstant speedup (Carola’s talk) Clever non-standard GAs beat the Θ( n log n ) bound [Doerr, Doerr, Ebel, 2015] . Dirk Sudholt Understanding Diversity and Recombination in Simple Evolutionary Algorithms 6 / 8

  14. What we know Expected time of the (1+1) Evolutionary Algorithm is en ln( n ) − O ( n ). Mutation only is inefficient for large populations No crossover: lower runtime bound of Ω( µ n + n log n ) [Witt, 2006] . Constant-factor speedup Small populations ( µ = o ((log n ) / log log n ))) make GAs twice as fast as the best mutation-only algorithm [Sudholt, 2016] . Superconstant speedup (Carola’s talk) Clever non-standard GAs beat the Θ( n log n ) bound [Doerr, Doerr, Ebel, 2015] . Current results do not take advantage of initial population diversity. Dirk Sudholt Understanding Diversity and Recombination in Simple Evolutionary Algorithms 6 / 8

  15. What we know Expected time of the (1+1) Evolutionary Algorithm is en ln( n ) − O ( n ). Mutation only is inefficient for large populations No crossover: lower runtime bound of Ω( µ n + n log n ) [Witt, 2006] . Constant-factor speedup Small populations ( µ = o ((log n ) / log log n ))) make GAs twice as fast as the best mutation-only algorithm [Sudholt, 2016] . Superconstant speedup (Carola’s talk) Clever non-standard GAs beat the Θ( n log n ) bound [Doerr, Doerr, Ebel, 2015] . Current results do not take advantage of initial population diversity. (Exception: paired-crossover EA [Pr¨ ugel-Bennett, Shapiro, Rowe, 2015] ) Dirk Sudholt Understanding Diversity and Recombination in Simple Evolutionary Algorithms 6 / 8

  16. Approaches Frequent argument: “If there is no diversity, there is a sequence of mutations paving the way for crossover.” Dirk Sudholt Understanding Diversity and Recombination in Simple Evolutionary Algorithms 7 / 8

  17. Approaches Frequent argument: “If there is no diversity, there is a sequence of mutations paving the way for crossover.” Our naive perspective (so far): mutation creates diversity. Dirk Sudholt Understanding Diversity and Recombination in Simple Evolutionary Algorithms 7 / 8

  18. Approaches Frequent argument: “If there is no diversity, there is a sequence of mutations paving the way for crossover.” Our naive perspective (so far): mutation creates diversity. Population Genetics perspective: recombination creates diversity. Dirk Sudholt Understanding Diversity and Recombination in Simple Evolutionary Algorithms 7 / 8

  19. Approaches Frequent argument: “If there is no diversity, there is a sequence of mutations paving the way for crossover.” Our naive perspective (so far): mutation creates diversity. Population Genetics perspective: recombination creates diversity. Can we get good upper runtime bounds for OneMax by exploiting diversity in the initial population? Dirk Sudholt Understanding Diversity and Recombination in Simple Evolutionary Algorithms 7 / 8

  20. Open questions What is the performance of the ( µ +1) GA on OneMax ? Aiming at rigorous results, but other approaches might help get us there. Goal: prove that the expected time for finding the optimum is at most T ( n , µ ), hopefully smaller than Θ( µ n + n log n ). When and why is a GA faster than its counterpart without crossover? What is the best population size (possibly depending on n )? Feel free to turn off mutation and only consider selection and recombination. Analyse time and success probability. Dirk Sudholt Understanding Diversity and Recombination in Simple Evolutionary Algorithms 8 / 8

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend