CategoricalEntailmentEnsembleOptimizationContext Constructor

Initializes a new instance of the CategoricalEntailmentEnsembleOptimizationContext class aimed to train an ensemble of categorical entailments by optimizing the specified objective function, with the given 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 CategoricalEntailmentEnsembleOptimizationContext(
	Func<DoubleMatrix, double> objectiveFunction,
	List<int> featureCategoryCounts,
	int numberOfResponseCategories,
	int numberOfCategoricalEntailments,
	bool allowEntailmentPartialTruthValues,
	double probabilitySmoothingCoefficient,
	OptimizationGoal optimizationGoal,
	int minimumNumberOfIterations,
	int maximumNumberOfIterations
)

Parameters

objectiveFunction  FuncDoubleMatrix, Double
The function to be optimized.
featureCategoryCounts  ListInt32
A list whose length equals the number of features on which are based the premises of the categorical entailments to be searched. At a given position, the list stores the number of categories in the corresponding feature variable.
numberOfResponseCategories  Int32
The number of categories in the feature variable about which is defined the conclusions of the categorical entailments to be searched.
numberOfCategoricalEntailments  Int32
The number of categorical entailments to be selected.
allowEntailmentPartialTruthValues  Boolean
If set to true signals that the truth value of a sampled categorical entailment must be equal to the homogeneity of the probability distribution from which its conclusion has been drawn. Otherwise, the truth value is unity.
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.

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.
-or-
featureCategoryCounts is null.
ArgumentExceptionoptimizationGoal is not a field of OptimizationGoal.
-or-
minimumNumberOfIterations is greater than maximumNumberOfIterations.
ArgumentOutOfRangeExceptionprobabilitySmoothingCoefficient is not in the open interval between 0 and 1.
-or-
featureCategoryCounts is empty.
-or-
featureCategoryCounts has negative or zero entries.
-or-
numberOfCategoricalEntailments is not positive.
-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