Wk 4-5 Swarm Intelligence (ACO) Flashcards

1
Q

Swarm Intelligence

A

Each element of the swarm has its own simple
behaviour, and a set of rules for interacting with
its fellows, and with the environment.

There is no central
controller.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Deneubourg et al (1989) Double Bridge Experiment

A

◼ Ants observed over time
◼ To begin with - random choices of path
◼ Later, one path taken by most ants

2nd experiment
◼ shortest path selected by most ants

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Stigmergy

A

indirect communication via interaction with the
environment

-Sematonic
-Sign-based

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Sematonic stigmergy

A

The actions of an agent directly impact problem-solving and influence the behavior of other agents. ( example position itself in a place )

It describes a decentralized coordination mechanism where agents communicate and coordinate their actions indirectly through modifications they make to their shared environment.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Sign-based stigmergy

A

The actions of agents in sign-based stigmergy directly modify the environment by leaving signs, markers, or signal but these actions are not directly related to problem-solving activities.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Ants

A

sophisticated sign-based stigmergy:
– They communicate using pheromones;
– They lay trails of pheromone that can be followed by other ants.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Pheromone Trails

A

Individual ants lay pheromone trails while travelling.

The pheromone trail gradually evaporates over time.

The trail strength accumulates with multiple ants
using the same path as Ants prefer paths with more pheromone on them.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Ant Colony Optimisation Algorithms

A

Ants = agents that move along between nodes in a graph

They choose where to go based on pheromone strength

An ant’s path represents a specific candidate solution.

When an ant has finished a solution, pheromone is laid on its path,according to quality of solution.

This affects behaviour of other ants by `stigmergy’

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

probabilistic state transition rule

A

for each ant the transition from city I to j at iteration t depends on :
- if the city has been visited already
- local hearistic ( 1/d_ij) desirability of visiting j while in i
- global amount of pheromone on the trail

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Updtae rule

A
  • after the tour each ant k lays pheromone on its path
  • phermone is Q/L (fitness) quantity / length of path ?
  • pheromone evaporates (1-p)*t t = n tour at this iteration
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Ant colony optimization algorithms variants:

A

Basic Ant System (AS) (1996) original

Variants update the pheromone trails differently :
– Max-Min Ant System ( using only the best ants)
– Elitist Rank Ant System (the best n ants)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly