Title: | General-Purpose Optimisation with the Self-Organising Migrating Algorithm |
---|---|
Description: | An R implementation of the Self-Organising Migrating Algorithm, a general-purpose, stochastic optimisation algorithm. The approach is similar to that of genetic algorithms, although it is based on the idea of a series of ``migrations'' by a fixed set of individuals, rather than the development of successive generations. It can be applied to any cost-minimisation problem with a bounded parameter space, and is robust to local minima. |
Authors: | Jon Clayden |
Maintainer: | Jon Clayden <[email protected]> |
License: | GPL-2 |
Version: | 1.2.0 |
Built: | 2024-11-24 04:24:54 UTC |
Source: | https://github.com/jonclayden/soma |
These functions generate option lists (and provide defaults) for the SOMA algorithm variants available in the package, which control how the algorithm will proceed and when it will terminate. Each function corresponds to a different top-level strategy, described in a different reference.
all2one( populationSize = 10L, nMigrations = 20L, pathLength = 3, stepLength = 0.11, perturbationChance = 0.1, minAbsoluteSep = 0, minRelativeSep = 0.001 ) t3a( populationSize = 30L, nMigrations = 20L, nSteps = 45L, migrantPoolSize = 10L, leaderPoolSize = 10L, nMigrants = 4L, minAbsoluteSep = 0, minRelativeSep = 0.001 ) pareto( populationSize = 100L, nMigrations = 20L, nSteps = 10L, perturbationFrequency = 1, stepFrequency = 1, minAbsoluteSep = 0, minRelativeSep = 0.001 )
all2one( populationSize = 10L, nMigrations = 20L, pathLength = 3, stepLength = 0.11, perturbationChance = 0.1, minAbsoluteSep = 0, minRelativeSep = 0.001 ) t3a( populationSize = 30L, nMigrations = 20L, nSteps = 45L, migrantPoolSize = 10L, leaderPoolSize = 10L, nMigrants = 4L, minAbsoluteSep = 0, minRelativeSep = 0.001 ) pareto( populationSize = 100L, nMigrations = 20L, nSteps = 10L, perturbationFrequency = 1, stepFrequency = 1, minAbsoluteSep = 0, minRelativeSep = 0.001 )
populationSize |
The number of individuals in the population. It is recommended that this be somewhat larger than the number of parameters being optimised over, and it should not be less than 2. The default varies by strategy. |
nMigrations |
The maximum number of migrations to complete. |
pathLength |
The distance towards the leader that individuals may migrate. A value of 1 corresponds to the leader's position itself, and values greater than one (recommended) allow for some overshoot. |
stepLength |
The granularity at which potential steps are evaluated.
It is recommended that the |
perturbationChance |
The probability that individual parameters are changed on any given step. |
minAbsoluteSep |
The smallest absolute difference between the maximum and minimum cost function values. If the difference falls below this minimum, the algorithm will terminate. The default is 0, meaning that this termination criterion will never be met. |
minRelativeSep |
The smallest relative difference between the maximum and minimum cost function values. If the difference falls below this minimum, the algorithm will terminate. |
nSteps |
The number of candidate steps towards the leader per migrating
individual. This option is used instead of |
migrantPoolSize , leaderPoolSize
|
The number of randomly selected individuals to include in the migrant and leader pools, respectively, under the T3A strategy. |
nMigrants |
The number of individuals that will migrate, at each migration, under the T3A strategy. |
perturbationFrequency , stepFrequency
|
Scale factors affecting how rapidly the perturbation probability and step sizes fluctuate under the Pareto strategy. |
All To One (the all2one
function) is the original SOMA strategy. At
each “migration”, the cost function is evaluated for all individuals in
the population, and the one with the lowest value is designated the
“leader”. All other individuals migrate towards the leader's position in
some or all dimensions of the parameter space, with a fixed probability of
perturbation in each dimension. Each migration is evaluated against the cost
function at several points on the line towards the leader, and the location
with the lowest value becomes the individual's starting position for the
next migration.
The Team To Team Adaptive (T3A) strategy (Diep, 2019) differs in that only a random subset of individuals are selected into a migrant pool and a leader pool for any given migration. A subset of most optimal migrants are then migrated towards the single most optimal individual from the leader pool. The perturbation probability and step length along the trajectory towards the leader also vary according to formulae given by the strategy author as the algorithm progresses through the migrations.
In the Pareto strategy (Diep et al., 2019), all individuals are sorted by cost function value at the start of each migration. The leader is selected randomly from the top 4% (20% of 20%) of most optimal individuals, and a single migrant is chosen at random from between the 20th and the 36th percentiles of the population (the top 20% of the bottom 80%). The perturbation probability and the step length again vary across migrations, but this time in a sinusoidal fashion, and the migrant is updated in all dimensions, but some more slowly than others.
A list of class "soma.options"
.
Jon Clayden <[email protected]>
I. Zelinka (2004). SOMA - self-organizing migrating algorithm. In G.C. Onwubolu & B.V. Babu, eds, New optimization techniques in engineering. Volume 141 of “Studies in Fuzziness and Soft Computing”, pp. 167-217. Springer.
Q.B. Diep (2019). Self-Organizing Migrating Algorithm Team To Team Adaptive – SOMA T3A. In proceedings of the 2019 IEEE Congress on Evolutionary Computation (CEC), pp. 1182-1187. IEEE.
Q.B. Diep, I. Zelinka & S. Das (2019). Pareto-Based Self-Organizing Migrating Algorithm. Mendel 25(1):111-120.
The Self-Organising Migrating Algorithm (SOMA) is a general-purpose, stochastic optimisation algorithm. The approach is similar to that of genetic algorithms, although it is based on the idea of a series of “migrations” by a fixed set of individuals, rather than the development of successive generations. It can be applied to any cost-minimisation problem with a bounded parameter space, and is robust to local minima.
soma(costFunction, bounds, options = list(), init = NULL, ...) bounds(min, max) ## S3 method for class 'soma' plot(x, y = NULL, add = FALSE, ...)
soma(costFunction, bounds, options = list(), init = NULL, ...) bounds(min, max) ## S3 method for class 'soma' plot(x, y = NULL, add = FALSE, ...)
costFunction |
A cost function which takes a numeric vector of parameters as its first argument, and returns a numeric scalar representing the associated cost value. |
bounds |
A list with elements |
options |
A list of options for the SOMA algorithm itself, usually
generated by functions like |
init |
An optional matrix giving the starting population's positions in parameter space, one per column. If omitted, initialisation is random (as is usual for SOMA), but specifying a starting state can be helpful when running the algorithm in stages or investigating the consistency of solutions. |
... |
Additional parameters to |
min , max
|
Vectors of minimum and maximum bound values for each
parameter to the |
x |
An object of class |
y |
Ignored. |
add |
If |
A list of class "soma"
, containing the following elements.
The index of the “leader”, the individual in the population with the lowest cost.
A matrix whose columns give the parameter values for each individual in the population at convergence.
A vector giving the cost function values for each individual at convergence.
A vector giving the cost of the leader for each migration during the optimisation. This should be nonincreasing.
The number of migrations completed.
The number of times the costFunction
was
evaluated.
A plot
method is available for this class, which shows the history
of leader cost values during the optimisation.
R implementation by Jon Clayden <[email protected]>.
I. Zelinka (2004). SOMA - self-organizing migrating algorithm. In G.C. Onwubolu & B.V. Babu, eds, New optimization techniques in engineering. Volume 141 of “Studies in Fuzziness and Soft Computing”, pp. 167-217. Springer.
soma.options
for setting options. optim
implements other general-purpose optimisation methods.
# Rastrigin's function, which contains many local minima rastrigin <- function (x) 10 * length(x) + sum(x^2 - 10 * cos(2*pi*x)) # Find the global minimum over the range -5 to 5 in each parameter x <- soma(rastrigin, bounds(c(-5,-5), c(5,5))) # Find the location of the leader - should be near the true minimum of c(0,0) print(x$population[,x$leader]) # Plot the cost history of the leaders plot(x)
# Rastrigin's function, which contains many local minima rastrigin <- function (x) 10 * length(x) + sum(x^2 - 10 * cos(2*pi*x)) # Find the global minimum over the range -5 to 5 in each parameter x <- soma(rastrigin, bounds(c(-5,-5), c(5,5))) # Find the location of the leader - should be near the true minimum of c(0,0) print(x$population[,x$leader]) # Plot the cost history of the leaders plot(x)