Fitness limit check in genetic algorithm
8 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hello I would just like to make sure the Fitness Limit is actually the value of the fitness function(objective function handle) , so unless GA produced a value smaller than that, the program won't stop, is that correct? The function tolerance doesn't really work for me due to the nature of my problem. My objective function is evaluating the difference between two sets of data, and I'm setting it to be <0.2 for the fitness limit for the stopping criteria. If I use function tolerance it lands on local minima and stops before it actually finds global min (if it has any).any better suggestions? Thank you.
0 Kommentare
Antworten (1)
Nitin Khola
am 23 Jul. 2015
I am assuming you are using the Optimization app. As per my understanding, you wish to confirm if Fitness Limit is a stopping criterion which is based on the value of fitness function.
Yes, the algorithm stops when the value of the fitness function ( synonymous with objective function ) for the best point in the current population is less than or equal to Fitness limit as mentioned in the following documentation:
Further, you can also refer to the following documentation for more information on "Global vs. Local Minima Using ga":
Siehe auch
Kategorien
Mehr zu Genetic Algorithm finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!