Skip to content

A heuristic approach to fitness evaluation in Genetic Algorithms.

Notifications You must be signed in to change notification settings

samuelemarro/FEIO

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

What is FEIO?

FEIO (Fitness Evaluation Is Overrated) is a C# genetic technique that reduces fitness evaluations using a heuristic approach.

How does FEIO work?

FEIO predicts which individuals are more likely to have an "unexpected" fitness and evaluates them, while using the average of the parents' fitness as an estimate. The probability of having such an unexpected fitness is called priority.

FEIO requires four parameters:

  • mutationWeight: how much FEIO should take the mutations into account when calculating the priority;

  • nonEvaluationWeight: how much FEIO should take approximated evaluations (instead of actual fitness evaluations) into account when calculating the priority;

  • evaluationRate: the rate of evaluated individuals in an epoch.

  • evaluationRateGrowth: how fast the evaluation rate should grow.

Priority is calculated as follows:

  1. If an individual mutates, its priority is increased by mutationWeight;
  2. If an individual is not evaluated, its priority is increased by nonEvaluationWeight;
  3. If an individual is generated by crossover, it inherits one of its parents' priority, in addition to the standard deviation of the parents' fitness;
  4. If an individual is evaluated, its priority is set to 0.

About

A heuristic approach to fitness evaluation in Genetic Algorithms.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages