BIMK / PlatEMO

Evolutionary multi-objective optimization platform
1.5k stars 455 forks source link

Using a predefined population #121

Open EliranFarhi opened 1 year ago

EliranFarhi commented 1 year ago

Is there a way of using a predefined population instead of creating a new population each time? For example, I want to run the optimization process for 300 function evolutions, and then for another 300, but continue from the last revealed population.

DestinyMy commented 1 year ago

You can load the last population at the beginning of the code of an algorithm, instead of generating a random population using Problem.Initialization()

EliranFarhi commented 1 year ago

Thank you, I wonder how should I do it: Can I insert a function name in a command line in which all of her role is to upload an existing population?

‫בתאריך שבת, 12 בנוב׳ 2022 ב-15:36 מאת ‪MY‬‏ @.***‬‏>:‬

You can load the last population at the beginning of the code of an algorithm, instead of generating a random population using Problem.Initialization()

— Reply to this email directly, view it on GitHub https://github.com/BIMK/PlatEMO/issues/121#issuecomment-1312479842, or unsubscribe https://github.com/notifications/unsubscribe-auth/A4EPSYRYVGHO3CD3AKP6PZLWH6MO5ANCNFSM6AAAAAAR6A7J3A . You are receiving this because you authored the thread.Message ID: @.***>

DestinyMy commented 1 year ago

Hello, you can view the manual for more details.