arjasa1103 / IntelligentSystemResources

0 stars 0 forks source link

Introduction to Genetic Algorithm #1

Open arjasa1103 opened 3 years ago

arjasa1103 commented 3 years ago

TL;DR

Genetic algorithm use fitness function to determine fitness score and select individuals with highest fitness score to reproduce and create a better offspring that solves the problem

Article Link

Introduction to genetic algorithms including example code

Author

Vijini Mallawaarachchi

Key Takeaways

Useful Code Snippets

START
Generate the initial population
Compute fitness
REPEAT
    Selection
    Crossover
    Mutation
    Compute fitness
UNTIL population has converged
STOP