I am doing Genetic algorithm for optimisation , but it is very slowly optimising, 1st itteration is not complete since 5hours but it is showing optimisation running.

19 visualizaciones (últimos 30 días)
Please guide me how to speed up the genetic algorithm optimisation

Respuestas (1)

Alan Weiss
Alan Weiss el 22 de Mzo. de 2022
ga is a slow algorithm. Most likely you have nonlinear constraints, which makes the algorithm even slower. If you do not have integer constraints, then I strongly suggest that you do not use ga, and instead give patternsearch a try. It, too, takes a lot of time with nonlinear constraints, but it is often much faster than ga. This assumes, of course, that your problem is nonsmooth.
If you have a nonsmooth problem with integer and nonlinear constraints, you have few solver choices. The only other choice is surrogateopt, which has its own overhead, but can sometimes be effective. And surrogateopt allows for checkpointing, which can be very helpful in long-running optimizations.
Alan Weiss
MATLAB mathematical toolbox documentation

Categorías

Más información sobre Surrogate Optimization en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by