Skip to content
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

Meta-optimization #817

Open
jenetics opened this issue Jan 21, 2022 · 0 comments
Open

Meta-optimization #817

jenetics opened this issue Jan 21, 2022 · 0 comments
Assignees

Comments

@jenetics
Copy link
Owner

In general, a genetic algorithm is used to find input parameters, which optimizes a given fitness function. To do this you have to create an instance of an evolution Engine, which itself has to be parameterized. The engine parameters, which influences the evolution performance are defined in the EvolutionParams class.

public final class EvolutionParams {
    final Selector<G, C> survivorsSelector;
    final Selector<G, C> offspringSelector;
    final Alterer<G, C> alterer;
    final int populationSize;
    final double offspringFraction;
    final long maximalPhenotypeAge;
}

The purpose of this ticket is to support the optimization of the evolution parameters for a given optimization problem. The assumption is, that for a given problem class there exists an optimal set of evolution parameters.

@jenetics jenetics self-assigned this Jan 21, 2022
@jenetics jenetics changed the title Meta-evolution Meta-optimization Jan 21, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant