Find values for best and mean fitness value for each generation in Genetic Algorithm

15 次查看(过去 30 天)
After running GA, using Optimization toolbox and code below, the following mean and best fitness value graph was obtained.
[x,fval,exitflag,output,population,score] = ...
ga(@revisepartialmodespring,nvars,[],[],[],[],lb,ub,[],[],options);
How to get the value of best fitness at each generation ?.. I wanted to show a comparison of the best fitness v/s generation for different problems on the same graph. Hence I need values to best fitness at each generation.
  1 个评论
Debaditya Gupta
Debaditya Gupta 2022-3-31
How to get similar type of graph in Particle Swarm Optimization in matlab?
Matlab PSO script is showing only iteration vs best fitnes value, but mean fitness value is not showing

请先登录,再进行评论。

采纳的回答

Alan Weiss
Alan Weiss 2021-8-22
Use a Custom Output Function for Genetic Algorithm. Model it on the gaplotbestf plot function. To see that function,
edit gaplotbestf
Alan Weiss
MATLAB mathematical toolbox documentation
  2 个评论
Ankur Shah
Ankur Shah 2021-8-25
Thanks for reply. Could you help me with code. I have tried but am unable to save Generations v/s best fitness data.
Alan Weiss
Alan Weiss 2021-8-25
options = optimoptions("ga","OutputFcn",@gascoreoutfun);
rng default % For reproducibility
x = ga(@ps_example,2,[],[],[],[],[],[],[],[],options)
Optimization terminated: average change in the fitness value less than options.FunctionTolerance.
x = 1×2
-4.6793 -0.0860
size(gapopulationhistory)
ans = 1×2
122 2
function [state,options,optchanged] = gascoreoutfun(options,state,flag)
persistent history
optchanged = false;
switch flag
case 'init'
history = [min(state.Score),mean(state.Score)];
assignin('base','gapopulationhistory',history);
case 'iter'
history = [history;min(state.Score),mean(state.Score)];
assignin('base','gapopulationhistory',history);
case 'done'
end
end
Alan Weiss
MATLAB mathematical toolbox documentation

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Genetic Algorithm 的更多信息

产品


版本

R2020a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by