WEEK 1 Flashcards

1
Q

What is a Generic Evolutionary Algorithm?

A

You have a solution s and a function f(s) which measures how good s is.
Generate P random solutions, evaluate fitness of each.
Go through Selection, Variation, & Population Update.

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

How do we select EA solutions?

A

Select the best - bad results, quickly (local minima)
Randomly - great results, way too slow

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

Exhaustive search (enumeration)

A

Generate every possible solution, compute its fitness, and hence discover which is best

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

What are the kinds of problem?

A

Easy (in P ‘tractable’)
Hard (not in P ‘intractable’)

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

What are approximate algorithms?

A

Deliver solutions in reasonable time
Try to find ‘near optimal’ solutions, often optimal
Cannot guarantee its the best solution. Evolutionary are the most successful and useful approximate algorithms around.

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