Memetic Algorithms.

Slides:



Advertisements
Similar presentations
Genetic Algorithms Vida Movahedi November Contents What are Genetic Algorithms? From Biology … Evolution … To Genetic Algorithms Demo.
Advertisements

CS6800 Advanced Theory of Computation
1 An Adaptive GA for Multi Objective Flexible Manufacturing Systems A. Younes, H. Ghenniwa, S. Areibi uoguelph.ca.
Institute of Intelligent Power Electronics – IPE Page1 Introduction to Basics of Genetic Algorithms Docent Xiao-Zhi Gao Department of Electrical Engineering.
Monte Carlo Methods and the Genetic Algorithm Definitions and Considerations John E. Nawn MAT 5900 March 17 th, 2011.
Genetic Algorithms1 COMP305. Part II. Genetic Algorithms.
EvoNet Flying Circus Introduction to Evolutionary Computation Brought to you by (insert your name) The EvoNet Training Committee The EvoNet Flying Circus.
Data Mining CS 341, Spring 2007 Genetic Algorithm.
MEMES: HOW DO FASHIONS START?. PROFESSOR RICHARD DAWKINS  Richard Dawkins is a biologist and formerly Professor of the Public Understanding of Science.
Effective gradient-free methods for inverse problems Jyri Leskinen FiDiPro DESIGN project.
Imagine that I am in a good mood Imagine that I am going to give you some money ! In particular I am going to give you z dollars, after you tell me the.
Intro to AI Genetic Algorithm Ruth Bergman Fall 2002.
Evolutionary Computational Intelligence Lecture 8: Memetic Algorithms Ferrante Neri University of Jyväskylä.
Memetic Algorithms By  Anup Kulkarni( )  Prashanth Kamle( ) Instructor: Prof. Pushpak Bhattacharyya.
Intro to AI Genetic Algorithm Ruth Bergman Fall 2004.
Genetic Algorithms: A Tutorial
1 Paper Review for ENGG6140 Memetic Algorithms By: Jin Zeng Shaun Wang School of Engineering University of Guelph Mar. 18, 2002.
The Evolution of Culture a.Language (code) as cultural evolution Some scientists believe that culture and language evolve using the same patterns and principles.
Genetic algorithms Prof Kang Li
Schemata Theory Chapter 11. A.E. Eiben and J.E. Smith, Introduction to Evolutionary Computing Theory Why Bother with Theory? Might provide performance.
CS440 Computer Science Seminar Introduction to Evolutionary Computing.
Introduction to Evolutionary Computation Temi avanzati di Intelligenza Artificiale - Lecture 1 Prof. Vincenzo Cutello Department of Mathematics and Computer.
Optimization Problems - Optimization: In the real world, there are many problems (e.g. Traveling Salesman Problem, Playing Chess ) that have numerous possible.
An Introduction to Genetic Algorithms Lecture 2 November, 2010 Ivan Garibay
Genetic Algorithms Introduction Advanced. Simple Genetic Algorithms: Introduction What is it? In a Nutshell References The Pseudo Code Illustrations Applications.
1 “Genetic Algorithms are good at taking large, potentially huge search spaces and navigating them, looking for optimal combinations of things, solutions.
G ENETIC A LGORITHMS Ranga Rodrigo March 5,
Cybercultural Evolution a.A “meme” is simply an idea that can reside within the human brain. Its analogy is the gene. Whereas the “gene” is the unit of.
Introduction to Genetic Algorithms. Genetic Algorithms We’ve covered enough material that we can write programs that use genetic algorithms! –More advanced.
Genetic Algorithms CSCI-2300 Introduction to Algorithms
Edge Assembly Crossover
Genetic Algorithms. 2 Overview Introduction To Genetic Algorithms (GAs) GA Operators and Parameters Genetic Algorithms To Solve The Traveling Salesman.
GENETIC ALGORITHMS Tanmay, Abhijit, Ameya, Saurabh.
1 Memetics: An Introduction Vivek Kumar Singh J.K. Institute of Applied Physics & Technology University of Allahabad.
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 Algorithms and TSP Thomas Jefferson Computer Research Project by Karl Leswing.
General information Theoretic basis of evolutionary computing. The general scheme of evolutionary algorithms General information Theoretic basis of evolutionary.
Genetic Algorithms. Solution Search in Problem Space.
EVOLUTIONARY SYSTEMS AND GENETIC ALGORITHMS NAME: AKSHITKUMAR PATEL STUDENT ID: GRAD POSITION PAPER.
Genetic Algorithms An Evolutionary Approach to Problem Solving.
Presented By: Farid, Alidoust Vahid, Akbari 18 th May IAUT University – Faculty.
Genetic (Evolutionary) Algorithms CEE 6410 David Rosenberg “Natural Selection or the Survival of the Fittest.” -- Charles Darwin.
Genetic Algorithms.
Paper Review for ENGG6140 Memetic Algorithms
Genetic Algorithm in TDR System
Genetic Algorithms.
An Evolutionary Approach
Differential Evolution
Chapter Two: The Evolution of Evolution
Example: Applying EC to the TSP Problem
Chapter 6: Genetic Algorithms
CSC 380: Design and Analysis of Algorithms
Comparing Genetic Algorithm and Guided Local Search Methods
Genetic Algorithms overview
Example: Applying EC to the TSP Problem
رایانش تکاملی evolutionary computing
Genetic Algorithms: A Tutorial
Example: Applying EC to the TSP Problem
Theories of Evolution 15.2 pp
Genetic Algorithms CSCI-2300 Introduction to Algorithms
Evolution.
Basics of Genetic Algorithms
Boltzmann Machine (BM) (§6.4)
Artificial Intelligence CIS 342
A Tutorial (Complete) Yiming
Introduction to Artificial Intelligence Instructor: Dr. Eduardo Urbina
Traveling Salesman Problem by Genetic Algorithm
Genetic Algorithms: A Tutorial
CSC 380: Design and Analysis of Algorithms
Presentation transcript:

Memetic Algorithms

Overview Philosophy Behind Memetics Genetic Algorithm – Intuition and Structure Genetic Algorithm Operators Memetic Algorithms TSP Using Memetic Algorithm

Genes and biological evolution A gene is a unit of biological information transferred from one generation to another. Genes determine our physical traits, what you look like, what you inherit from either one of your parents.

Survival of The Fittest Origin of New Species Biological Evolution Natural Selection Survival of The Fittest Origin of New Species

Examples of Biological Evolution and Natural Adaptation Gills in Pisces Frog Skin Hollow Bones in Birds Biological Evolution of Human Characteristic Thumb Erect Vertebral Column Lower Jaw

Biological Evolution Cultural Evolution..?? Source: www.wikipedia.org

Biological Evolution Meme..!!!

Meme “the basic unit of cultural transmission, or imitation” - Richard Dawkins “an element of culture that may be considered to be passed on by non-genetic means” - English Oxford Dictionary

Examples of Meme Fashion Science Literature Music Latest trends are ideas of fashion designers Science Scientists sharing their thoughts Literature Novel, poetry Music Even birds are found to imitate songs of other birds!!!

Genes and Memes, where they are similar Genes propagate biologically from chromosome to chromosome Memes propagate from brain to brain via imitation Survival of fittest in meme Concept of God is survived though no scientific evidence is present

Genes and Memes, where they differ Genes are pre-decided Genes are static through generations, memes can be changed! Memes allow improvement After learning language, we contribute to it through literature New heuristics to 8-puzzle problem solved in class We use this property to improve genetic algorithms

Genetic Algorithm solves (typically optimization) problems by combining features of complete solutions to create new populations of solutions. applicable when it is hard or unreasonable to try to completely identify a subproblem hierarchical structure or to approach the problem via an exact approach.

Solving the Traveling salesman problem with a Memetic Algorithm

Memetic Algo for TSP-representation Array pop stores population Size of pop=P No of cities=N Tour represented as 1234....N Fitness function-cost of the tour

TSP - Crossover Distance Preserving Crossover d(p1,p2) = d(p1,child) = d(p2,child) d(x, y) = #edges not common in x and y

Distance Preserving Crossover Source: B. Freisleben et al, “New Genetic Local Search Operators for the Traveling Salesman Problem”

Hybridisation with other techniques: Memetic Algorithms Performance Source: Slides of A.E. Eiben and J.E. Smith, Introduction to Evolutionary Computing Hybridisation with other techniques: Memetic Algorithms

Conclusion A genetic algorithm promises convergence but not optimality. But we are assured of exponential convergence, possibly at different optimal chromosomes. Do very well in identifying the regions where those optima lie. Optimal solution=Genetic Algo + Local Search

References R. Dawkins, “The Selfish Gene – new edition”, Oxford University Press, 1989 pp 189-201 David E. Goldberg, Genetic Algorithms in Search, Optimization and Machine Learning, 1st edition, Addison-Wesley Longman Publishing Co., 1989 pp 170-174 B. Freisleben and P. Merz, New Genetic Local Search Operators for the Traveling Salesman Problem. In H.-M. Voigt, W. Ebeling, I. Rechenberg, and H.-P. Schwefel, editors, Proceedings of the 4th Conference on Parallel Problem Solving from Nature - PPSN IV, pages 890--900. Springer, 1996 S. Lin and B. W. Kemighan, An effective heuristic algorithm for the Traveling Salesman problem, Operation Research 21 (1973) 498- 516

?

Thank you!