-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[FEATURE] use previous computation #96
Comments
You can feed them into the pagmo population as chromosomes? |
Thx.
Goal is to find a way to inject
either previous computation as initial seed
or some human formulae as initial seed
to prevent from starting from scratch again
every time.
Thz
… On Oct 7, 2022, at 20:15, Dario Izzo ***@***.***> wrote:
You can feed them into the pagmo population as chromosomes?
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you authored the thread.
|
Yes, understood. At the end of an evolution you can save the best chromosome (i.e. a formula) of the population. Then you can create at any point an empty population and push-back that chromosome in togheter with any other random or evolved formula. At that point you can continue evolving. |
Sure, thanks
Is there any simple example available ?
(where seed is custom injected).
thanks
… On Oct 7, 2022, at 23:52, Dario Izzo ***@***.***> wrote:
Yes, understood. At the end of an evolution you can save the best chromosome (i.e. a formula) of the population.
Then you can create at any point an empty population and push-back that chromosome in togheter with any other random or evolved formula.
At that point you can continue evolving.
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you authored the thread.
|
Unfortunately not. Its going to be something like this ...
but As per your question on the possibility to use a human formula as seed ... there is no utility atm that creates a chromosome from a formula. This is not difficult per se, but there are infinite ways of doing so (i.e. infinite chromosomes that correspond to the same formula) so one would have to take some decisions there, which will also affect the evolution afterwards. |
Just wondering, if there is a way to use previous formulaes
as starting points for evolution ?
Mostly, load as initial population (vs starting from scratch every time...),
Thanks
The text was updated successfully, but these errors were encountered: