ant colony optimization
play

ant colony optimization Clay McLeod April 27, 2015 University of - PowerPoint PPT Presentation

ant colony optimization Clay McLeod April 27, 2015 University of Mississippi lists Ant Colony Optimization (ACO) is a swarm algorithm that attempts to emulate the behavior of ants searching for food. First proposed by Marco Dorigo


  1. ant colony optimization Clay McLeod April 27, 2015 University of Mississippi

  2. lists ∙ Ant Colony Optimization (ACO) is a swarm algorithm that attempts to emulate the behavior of ants searching for food. ∙ First proposed by Marco Dorigo for his Master’s thesis in 1992. ∙ Useful in solving minimum optimization problems, especially those that closely emulate the biological system by which they are inspired. 1

  3. lists ∙ Ant Colony Optimization (ACO) is a swarm algorithm that attempts to emulate the behavior of ants searching for food. ∙ First proposed by Marco Dorigo for his Master’s thesis in 1992. ∙ Useful in solving minimum optimization problems, especially those that closely emulate the biological system by which they are inspired. 1

  4. lists ∙ Ant Colony Optimization (ACO) is a swarm algorithm that attempts to emulate the behavior of ants searching for food. ∙ First proposed by Marco Dorigo for his Master’s thesis in 1992. ∙ Useful in solving minimum optimization problems, especially those that closely emulate the biological system by which they are inspired. 1

  5. inspiration ∙ Ants communicate through an indirect, distributed communication called stigmergy . ∙ Process involves modifying their environment by placing pheromone as they travel towards food. ∙ Ants can sense the presence and density of the pheromone on the ground. ∙ Through a natural instinct, ants are attracted to pheromone, making them more likely to follow the path of previous ants. 2

  6. inspiration ∙ Ants communicate through an indirect, distributed communication called stigmergy . ∙ Process involves modifying their environment by placing pheromone as they travel towards food. ∙ Ants can sense the presence and density of the pheromone on the ground. ∙ Through a natural instinct, ants are attracted to pheromone, making them more likely to follow the path of previous ants. 2

  7. inspiration ∙ Ants communicate through an indirect, distributed communication called stigmergy . ∙ Process involves modifying their environment by placing pheromone as they travel towards food. ∙ Ants can sense the presence and density of the pheromone on the ground. ∙ Through a natural instinct, ants are attracted to pheromone, making them more likely to follow the path of previous ants. 2

  8. inspiration ∙ Ants communicate through an indirect, distributed communication called stigmergy . ∙ Process involves modifying their environment by placing pheromone as they travel towards food. ∙ Ants can sense the presence and density of the pheromone on the ground. ∙ Through a natural instinct, ants are attracted to pheromone, making them more likely to follow the path of previous ants. 2

  9. algorithm overview

  10. pseudocode initialization; while not sufficiently sure of optimal solution do for m ants do currentPosition = N NEST ; Randomly travel to a connected node, paths with pheromone are more likely to be chosen. Update currentPosition to our current node. end end Update global pheromone map end Algorithm 1: Simple ACO algorithm 4 while currentPosition != N FOOD do

  11. modeling ∙ Vertices are the environment, including the nest, food source, and intermediate landmarks. ∙ Edges are the connected paths for the ants to walk between these vertices. Artificial Ants ∙ Represented by mathematical constructs used to simulate an ant performing a walk between two vertices. Pheromone ∙ Represented by normalized weights on each edge in the graph. 5 Undirected Graph , G ∈ ( V , E )

  12. modeling ∙ Vertices are the environment, including the nest, food source, and intermediate landmarks. ∙ Edges are the connected paths for the ants to walk between these vertices. Artificial Ants ∙ Represented by mathematical constructs used to simulate an ant performing a walk between two vertices. Pheromone ∙ Represented by normalized weights on each edge in the graph. 5 Undirected Graph , G ∈ ( V , E )

  13. modeling ∙ Vertices are the environment, including the nest, food source, and intermediate landmarks. ∙ Edges are the connected paths for the ants to walk between these vertices. Artificial Ants ∙ Represented by mathematical constructs used to simulate an ant performing a walk between two vertices. Pheromone ∙ Represented by normalized weights on each edge in the graph. 5 Undirected Graph , G ∈ ( V , E )

  14. visualization 6

  15. visualization Shorter paths are traveled more quickly by each ant, meaning that they become more saturated with pheromone as time goes on. 7

  16. visualization This, in turn, makes the ants more likely to follow the path because they are attracted to the pheromone, effectively converging on the optimal shortest path. 8

  17. variations

  18. variations Ant System ∙ Pheromone is updated by all m ants after every ant has built a solution (like in the implementation described earlier). ∙ Baseline comparison, reasonable results. Ant Colony System ∙ Introduces ants also updating the pheromone levels after each step in their path construction. ∙ Mixed results based on application. MAX-MIN Ant System ∙ Only the best ant can place new pheromone levels in the graph, amount of minimum and maximum pheromone is bounded for each edge. ∙ Produces consistently better results than the first two approaches. 10

  19. variations Ant System ∙ Pheromone is updated by all m ants after every ant has built a solution (like in the implementation described earlier). ∙ Baseline comparison, reasonable results. Ant Colony System ∙ Introduces ants also updating the pheromone levels after each step in their path construction. ∙ Mixed results based on application. MAX-MIN Ant System ∙ Only the best ant can place new pheromone levels in the graph, amount of minimum and maximum pheromone is bounded for each edge. ∙ Produces consistently better results than the first two approaches. 10

  20. variations Ant System ∙ Pheromone is updated by all m ants after every ant has built a solution (like in the implementation described earlier). ∙ Baseline comparison, reasonable results. Ant Colony System ∙ Introduces ants also updating the pheromone levels after each step in their path construction. ∙ Mixed results based on application. MAX-MIN Ant System ∙ Only the best ant can place new pheromone levels in the graph, amount of minimum and maximum pheromone is bounded for each edge. ∙ Produces consistently better results than the first two approaches. 10

  21. applications

  22. selected applications ∙ Optimal - Vehicle Routing, Bayesian Networks, Project Scheduling 1 ∙ Good, not great - Traveling salesman, Max Clique Problem ∙ Experimental - Protein Folding 1 Highly constrained results . 12

  23. selected applications ∙ Optimal - Vehicle Routing, Bayesian Networks, Project Scheduling 1 ∙ Good, not great - Traveling salesman, Max Clique Problem ∙ Experimental - Protein Folding 1 Highly constrained results . 12

  24. selected applications ∙ Optimal - Vehicle Routing, Bayesian Networks, Project Scheduling 1 ∙ Good, not great - Traveling salesman, Max Clique Problem ∙ Experimental - Protein Folding 1 Highly constrained results . 12

  25. Questions? 13

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