Skip to content

Commit

Permalink
Update references to meta-optimizer and configurable algorithm
Browse files Browse the repository at this point in the history
  • Loading branch information
jfaldanam authored Jul 25, 2023
1 parent 1c01bb5 commit 511a91b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ algorithms, i.e., Evolver applies a meta-optimization approach.

The basis of Evolver are:
* A multi-objective metaheuristic algorithm in which, given one or several problems used as training set, a configuration of it is sought that solves the training set in an efficient way. This algorithm is referred as to the *Configurable Algorithm*.
* A design space associated to the internal algorithm which defines their parameters and components subject to be configured.
* A list of quality indicators used as objectives to minimize when using the internal algorithm to solve a problem of the training set.
* A *meta-optimizer* algorithm which is used to solve the optimization problem defined by minimizing the quality indicators of an internal algorithm given a particular training set.
* A design space associated to the configurable algorithm which defines their parameters and components subject to be configured.
* A list of quality indicators used as objectives to minimize when using the configurable algorithm to solve a problem of the training set.
* A *meta-optimizer* algorithm which is used to solve the optimization problem defined by minimizing the quality indicators of an configurable algorithm given a particular training set.

The project is made of two parts:
* [Evolver](src): A Java library built with maven that implements the meta-optimization approach.
Expand Down Expand Up @@ -48,13 +48,13 @@ general_config:
cpu_cores: 8
plotting_frequency: 100

external_algorithm_arguments:
meta_optimizer_arguments:
meta_optimizer_algorithm: NSGAII
meta_optimizer_population_size: 50
meta_optimizer_max_evaluations: 3000
indicators_names: NHV,EP

internal_algorithm_arguments:
configurable_algorithm_arguments:
configurable_algorithm: NSGAII
internal_population_size: 100
independent_runs: 3
Expand Down

0 comments on commit 511a91b

Please sign in to comment.