STOCHASTIC SEARCH ALGORTITHMS-I & II Flashcards

1
Q

What is combinatorial explosion

A

combinatorial explosion refers to the rapid increase in the number of possibilities or potential solutions.

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

Write formula for Maximising and Minimising

A

Max –> 1 / (1 + exp( ΔE / T ) )

Min –> 1 / (1 + exp( -ΔE / T ) )

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

Explain Selection, Crossover and Mutation

A

Selection –> Parent selection is a crucial process of selecting parents which mate and recombine to create off springs for the next generation. Parent selection is very crucial to the convergence rate of a GA.

Crossover –> 2 or more parents are selected and one or more off springs are produced. This is Exploration.

Mutation –> This is a small random change in the chromosome, to get a new solution. This is exploitation.

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

Discuss the types of Crossovers

A

One Point Crossover –> A random point is selected and the tail of the two parents is swapped.

Multi Point Crossover –> 2 or more points are selected, and the selected segments are then swapped.

Uniform Crossover –> we flip a coin for each chromosome to decide whether or not it’ll be included in the off-spring.

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

Explain the Fitness Proportionate Selection

A

Every individual can become a parent based on how fit they are. This is of two types-
i) Roulette Wheel Selection
ii) Stochastic Universal Sampling

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

Explain Roulette Wheel Selection

A

Each individual is given a fitness value and a circular wheel is created n pies, the size of these pies is proportionate
to the fitness value of each individual.

Then the wheel is rotated, the selected individual is the parent. This is repeated until the desired number of parents are selected.

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

Explain Stochastic Universal Sampling

A

This is similar to roulette wheel selection, but here multiple parents are selected in just one spin.

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

Explain Tournament Selection

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