Can anyone help me for knowing the options of genetic algorithm?
古いコメントを表示
How can i know what the value that i put in genetic algorithm's options ?
1 件のコメント
回答 (2 件)
To list them all —
opts = optimoptions(@ga)
Change the ones you need to change. This is a structure, so to display 'FunctionTolerance' refer to it as —
FcnTol = opts.FunctionTolerance
To change it, use a similar approach —
opts.FunctionTolerance = 1E-5
.
7 件のコメント
noura
2024 年 8 月 20 日
Star Strider
2024 年 8 月 20 日
I would leave them as their set default values initially. Only change them if that would improve the results of your optimisation.
noura
2024 年 8 月 20 日
Star Strider
2024 年 8 月 20 日
No wories!
Run your ga code and see if the resulkts are essentially what you expect. If they are not, first check your fitness function (or your objective function, depending no how your fitness function is constructed) to be certain it is doing the correct calculations. (One way to do that would be to give it a set of appropriate parameters and then run it to see what it produces. It does not have to be exact — that is the purpose of running the optimisation — however it has to make sense and produce a reasonable result.) After that, run the ga optimisation a few times to see what it cones up with. If some of the results are acceptable although imprecise, set the appropriate options to decrease the tolerances or increase the number of generations and see if you can improve the result. (I have sets of options that I use for specific problems, so when you find a set that works, save it somewhere to use with similar problems.)
Note: to list all of the options,
orderfields(struct(optimoptions(@ga)))
noura
2024 年 8 月 21 日
Star Strider
2024 年 8 月 21 日
@noura — That depends on what the problem is, how many parameters are in the model, and the nature of the fitness function itself.
In my optimoptions structure, I include:
'PlotFcn',@gaplotbestf, 'PlotInterval',1
This tells me how the fitness is progressing.
I would have to see (and understand) your fitness function in order to provide anything further.
Steven Lord
2024 年 8 月 20 日
0 投票
Since you've said you're a beginner with MATLAB (and presumably Global Optimization Toolbox), I recommend starting off with the tutorials for how to get started with Global Optimization Toolbox on this documentation page. There are also three examples linked from that page (click the Examples link just below the blue Help Center bar running across the screen, direct link is here.) The examples don't go into the various options available to the various solvers in that much depth, as they're intended to help you get started and at least at first you may not need to change those options.
There are a few examples in the Genetic Algorithm category that go into a little more depth about those options. I'm looking specifically at "Effects of Genetic Algorithm Options". To get to that category, click on "Genetic Algorithm" on the "Get Started" Examples page (the second link above, direct link to those examples here.)
Finally, looking at the list of Self-Paced Online Courses (the "Training Courses" link from the Help Center, direct link here) I'm not 100% sure if the Optimization Onramp covers Global Optimization Toolbox as well or if it focuses mainly or solely on Optimization Toolbox. But it may be of interest and/or use to you.
カテゴリ
ヘルプ センター および File Exchange で Genetic Algorithm についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!