Evolutionary Algorithms Flashcards

1
Q

Situation when we lack detailed information about the underlying optimization problem.

A

Black box

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

Family of robust and universally applicable optimization methods, their flexibility enables usage within black-box setting.

A

Evolutionary algorithms

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

The most simple version of an evolutionary algorithm

A

Evolutionary strategy

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

The two levels of existence in the representation of an evolutionary algorithm.

A

Genotype and phenotype

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

Possible solutions in the original problem context

A

Phenotype

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

Encoding of the phenotype in the context of an EA

A

Genotype

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

Function that represents the optimization target in a EA.

A

Fitness function

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

Single real-valued number to which each phenotype is mapped to.

A

Fitness value

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

The current set of candidate solutions/individuals, can contain multiple copies of the same individual.

A

Population

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

(𝜇 + 𝜆)-selection which selects, the best 𝜇 individuals out of 𝑃𝜇 ∪ 𝑃𝜆, enables ___.

A

Elitism

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

(𝜇, 𝜆)-selection select the best 𝜇 individuals only out of 𝑃𝜆, enables ___.

A

Random walks

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

They are responsible for the generation of new candidate solutions.

A

Variation operators

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

The two types of variation operators.

A

Mutation and recombination

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

An individual that survives a long time in an evolutionary algorithm is called a(n):

A

Elite

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

True or false? Evolutionary algorithms are a suitable method for dealing with black-box optimization problems.

A

True

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

True or false? Mutation in evolutionary algorithms is applied to get better exploitation of the search space.

A

False. Mutation is responsible for the exploration of the search space

17
Q

True or false? in (μ+λ) -selection, individuals from the parent generation can survive and become part of the next generation.

A

True

18
Q

True or false? The landscape of the feature space, i.e., joint space of search space and fitness function, is a priori usually unknown.

A

True

19
Q

Which variation operator is responsible for exploring the search space?

A

Mutation