How to apply a random Crossover (Arithmetic/Scattered/Two-point) in Genetic Algorithm using auto-generated file from Optimization Toolbox ?
이전 댓글 표시
I have prepared a code in MATLAB with optimization toolbox which seems to be giving fair results for different optimization functions but at present, accuracy is highly dependent on the type of crossover selected.
To take advantage of different crossover and to improve efficiency, i want to apply a random crossover after every iteration i.e. any of Arithmetic, Scattered or Two-point. How can I do that ?
댓글 수: 7
Walter Roberson
2020년 8월 10일
Do you have integer constraints? Do you have linear constraints?
If your system is eligible to provide CrossoverFcn, then that function is not required to do the same kind of cross-over each time.
Ankur Shah
2020년 8월 10일
편집: Ankur Shah
2020년 8월 10일
Walter Roberson
2020년 8월 10일
Then you can provide a custom CrossoverFcn that does whatever you want, possibly even calling a random one of the standard crossover functions.
Ankur Shah
2020년 8월 11일
편집: Ankur Shah
2020년 8월 11일
Walter Roberson
2020년 8월 11일
crossfcns = {@first, @second};
chosen = crossfcns{randi(length(crossfcns))} ;
[varargout{:}] = chosen<varargin{:}) ;
Ankur Shah
2020년 8월 11일
편집: Ankur Shah
2020년 8월 11일
Walter Roberson
2020년 8월 11일
options = optimoptions(options,'CrossoverFcn', @MyCustomCrossover)
function varargout = MyCustomCrossover(varargin)
crossfcns = {@crossoverarithmetic, @crossoverheuristic, @crossoveritnermediate, @crossoverscattered, @crossoversinglepoint, @crossovertwopoint};
chosen = crossfcns{randi(length(crossfcns))} ;
[varargout{:}] = chosen(varargin{:}) ;
end
채택된 답변
추가 답변 (1개)
Sulaymon Eshkabilov
2020년 8월 11일
0 개 추천
See the screen shot given in the attachement. You should select from the drop-down options whichever crossover function suits for your task.
댓글 수: 3
Ankur Shah
2020년 8월 11일
편집: Ankur Shah
2020년 8월 11일
Walter Roberson
2021년 1월 24일
I show using a literally random crossover in https://www.mathworks.com/matlabcentral/answers/577609-how-to-apply-a-random-crossover-arithmetic-scattered-two-point-in-genetic-algorithm-using-auto-gen#comment_968707
Ankur Shah
2021년 1월 25일
편집: Ankur Shah
2021년 1월 25일
카테고리
도움말 센터 및 File Exchange에서 Genetic Algorithm에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!