Understanding Genetic Algorithms

Nachiketh Doraiswamy D
3 min readMay 10, 2021

--

Understanding aspects of evolutionary programming with genetic algorithms

Introduction

  • Genetic algorithms are general-purpose search and optimization algorithms that use principles inspired by natural population genetics to evolve solutions to problems
  • GA is based on evolutionary programming and uses stochastic gradient optimization
  • GAs operate on a population of individuals representing potential solutions to a given problem.
  • GAs seek to produce better (fitter) individuals (solutions) by combining the better of the existing ones (through breeding -crossover and mutation).

Evolutionary Algorithm Lifecycle

Fig 1: evolutionary algorithm lifecycle
  • Initially we define our problem and our objective function.
  • We define our initial population size.
  • We perform genetic operations like selection, crossover and mutation on the selected population to get fitter genes for the next generation.
Fig 2: operations in GA
  • Selection-focuses attention on high fitness individuals, thus exploiting on the available fitness information. High-performing structures might be chosen several times for replication, while poor-performing structures might not be chosen at all.
  • Crossover-Combines the features of two parent structures (new combinations of genes are generated from previous ones) to form two similar offspring.
  • Mutation-Alters one or more components of a selected structure randomly (a direct analogy from nature and provides the way to introduce new information into the population).
  • This process goes on till we reach a global optimal value with the best possible fitness scores for the genes.

GA Search Process

Fig 3: GA search process
  • First, we initialize a random sample space for our initial population. It should represent a random sample of the search space. Each member of the population is evaluated and assigned a measure of its fitness as a solution.
  • Members are then selected based on the fitness function defined by us. Structures in the current population are selected for replication based on their relative fitness. Genetic operators (crossover, mutation) are performed to generate the new population.
  • The resulting offspring are then evaluated and inserted back into the population, replacing older members.
  • Specific decisions about how many members are replaced during each iteration, and how members are selected for replacement, define a range of alternative implementations
  • Generational GA-GAs that replace the entire population
  • Steady-state GA-GAs that replace only a small fraction of chromosomes. Typically new chromosomes replace the worst chromosomes

GA Pseudocode

Fig 4: GA Pseudocode

GA Sample Function Implementation

GA Applications

  • Combinatorial optimization
  • Resource allocation problems
  • Classical problem of travelling salesperson / bin-packing / job shop scheduling etc.
  • Financial forecasting
  • Design optimization-network routing, Satellite orbit selection etc.
  • Machine learning loss function optimization

References

Sign up to discover human stories that deepen your understanding of the world.

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

Nachiketh Doraiswamy D
Nachiketh Doraiswamy D

Written by Nachiketh Doraiswamy D

Deep Learning || Computer Vision || Algorithms

No responses yet

Write a response