Click or drag to resize

CMSA Class

Implements the CMSA. The algorithm is described in H.G.Beyer, B.Sendhoff (2008). Covariance Matrix Adaptation Revisited: The CMSA Evolution Strategy In Proceedings of the Tenth International Conference on Parallel Problem Solving from Nature (PPSN X), pp. 123-132, LNCS, Springer-Verlag Also see http://en.wikipedia.org/wiki/CMA-ES
Inheritance Hierarchy
SystemObject
  FinMath.MachineLearning.EvolutionaryAlgorithmsBaseOptimizer
    FinMath.MachineLearning.EvolutionaryAlgorithmsCMSA

Namespace:  FinMath.MachineLearning.EvolutionaryAlgorithms
Assembly:  FinMath (in FinMath.dll) Version: 2.4.7-0a995bd0ea1854c2c868ec3f8dae606c5777e170
Syntax
C#
public class CMSA : BaseOptimizer

The CMSA type exposes the following members.

Constructors
  NameDescription
Public methodCMSA
Initializes a new instance of the CMSA class
Top
Properties
  NameDescription
Public propertyInitialCovarianceMatrix
Data covariance matrix estimation.
Public propertyInitialSigma
Coordinate wise standard deviation (step size).
Public propertyLambda
Population size, offspring number. At least two, generally > 4.
Public propertyMinimizationSteps
Overall minimization steps number.
(Inherited from BaseOptimizer.)
Public propertyMu
Number of parents/points for recombination.
Public propertyParallelize
Use multiple threads to find objective function minimum.
Public propertyRestartCount
The minimization process restarts number.
(Inherited from BaseOptimizer.)
Public propertySolutionPoint
The best found solution point.
(Inherited from BaseOptimizer.)
Public propertySolutionStep
The step number where the best solution found.
(Inherited from BaseOptimizer.)
Public propertySolutionValue
The best found objective function value.
(Inherited from BaseOptimizer.)
Public propertyTerminationDelegate
The user's stop criterion function.
(Inherited from BaseOptimizer.)
Public propertyTerminationIterations
The maximum optimization iterations number.
(Inherited from BaseOptimizer.)
Public propertyTerminationObjectiveChange
Objective function change stop criterion. Null means no objective change termination conditions.
(Inherited from BaseOptimizer.)
Public propertyTerminationTimeout
The algorithm timeout: the execution will be interrupted on the next step after the timeout expiration.
(Inherited from BaseOptimizer.)
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodOptimize
Minimization method.
(Overrides BaseOptimizerOptimize(BaseOptimizerObjectiveDelegateType, Vector).)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also