How to change Options of PSO during iterations?

2 visualizaciones (últimos 30 días)
Buddhi Wimarshana
Buddhi Wimarshana el 6 de Oct. de 2022
Comentada: Buddhi Wimarshana el 25 de Nov. de 2022
Hi there,
Is there a way to change the options used in PSO during the iterations?
The reason is I try to do more of a explorative search (using smaller 'SocialAdjustmentWeight' and smaller 'MinNeighborsFraction' values) during the first few iterations of the PSO and then go for a more exploitative search with comparatively larger values for both mentioned parameters.
I tried creating two seperate PSO runs where each PSO has mentioned options set as per requirement. Then pass the best solution found during the first PSO to the second PSO as initial matrix ('InitialSwarmMatrix'). But I think this way the second PSO has to start everything from begining on the search (kind of), so if I can alter the options during the iterations that way it might give better results.
Any suggestions mostly welcome!
thanks in advance

Respuestas (1)

John D'Errico
John D'Errico el 24 de Nov. de 2022
Editada: John D'Errico el 24 de Nov. de 2022
Sorry, but no. You cannot change the options for a solver in the middle of the solve. This is essentially true for any solver. (Allowing the options to change arbitrarily in mid-stride would result in the code from hell to write. Not gonna happen.)
You can allow the solver to terminate at some point, then restart it as a new problem from that point, then with new options.
  1 comentario
Buddhi Wimarshana
Buddhi Wimarshana el 25 de Nov. de 2022
many thanks @John D'Errico. I started doing the same as you suggested, re-start the solver with the changed conditions each time.

Iniciar sesión para comentar.

Categorías

Más información sobre Particle Swarm en Help Center y File Exchange.

Productos


Versión

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by