PartitionOptimizationContext Constructor

Initializes a new instance of the PartitionOptimizationContext class aimed to optimize the specified objective function, with the given optimization goal, range of iterations, and probability smoothing coefficient.

Definition

Namespace: Novacta.Analytics.Advanced
Assembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
C#
public PartitionOptimizationContext(
	Func<DoubleMatrix, double> objectiveFunction,
	int stateDimension,
	int partitionDimension,
	double probabilitySmoothingCoefficient,
	OptimizationGoal optimizationGoal,
	int minimumNumberOfIterations,
	int maximumNumberOfIterations
)

Parameters

objectiveFunction  FuncDoubleMatrix, Double
The function to be optimized.
stateDimension  Int32
The number of available items.
partitionDimension  Int32
The maximum number of parts allowed in a partition.
probabilitySmoothingCoefficient  Double
A coefficient to define the smoothing scheme for the probabilities of the Cross-Entropy parameters exploited by this context.
optimizationGoal  OptimizationGoal
A constant to specify if the function must be minimized or maximized.
minimumNumberOfIterations  Int32
The minimum number of iterations required by this context.
maximumNumberOfIterations  Int32
The maximum number of iterations allowed by this context.

Remarks

It is assumed that the objectiveFunction will accept row vectors as valid representations of an argument.

Any argument represents a partition of stateDimension items, say LaTeX equation, having no more than partitionDimension parts, say LaTeX equation. An argument LaTeX equation must have its LaTeX equation-th entry LaTeX equation equal to LaTeX equation if the corresponding item is included in the LaTeX equation-th part, with LaTeX equation.

As discussed by Rubinstein and Kroese, Remark 5.2, p. 189[1], typical values for probabilitySmoothingCoefficient are between .7 and 1 (excluded).

Exceptions

ArgumentNullExceptionobjectiveFunction is null.
ArgumentExceptionoptimizationGoal is not a field of OptimizationGoal.
-or-
minimumNumberOfIterations is greater than maximumNumberOfIterations. -or-
partitionDimension is not less than stateDimension.
ArgumentOutOfRangeExceptionprobabilitySmoothingCoefficient is not in the open interval between 0 and 1.
-or-
stateDimension is not positive.
-or-
partitionDimension is not greater than one.
-or-
minimumNumberOfIterations is not positive.
-or-
maximumNumberOfIterations is not positive.

Bibliography

[1] Rubinstein, R.Y. and Kroese, D.P., The Cross-Entropy Method, A unified Approach to Combinatorial Optimization, Monte-Carlo Simulation, and Machine Learning, Springer, New York. (2004)

See Also