CategoricalEntailmentEnsembleOptimizationContextGetCategoricalEntailmentEnsembleClassifier Method

Gets the CategoricalEntailmentEnsembleClassifier instance represented by an element of the state-space defined by this context, having the specified feature and response variables.

Definition

Namespace: Novacta.Analytics.Advanced
Assembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
C#
public CategoricalEntailmentEnsembleClassifier GetCategoricalEntailmentEnsembleClassifier(
	DoubleMatrix state,
	List<CategoricalVariable> featureVariables,
	CategoricalVariable responseVariable
)

Parameters

state  DoubleMatrix
A matrix representing an element of the state-space defined by this context.
featureVariables  ListCategoricalVariable
The list of feature categorical variables about which the represented entailments define their FeaturePremises.
responseVariable  CategoricalVariable
The categorical variable from which the represented entailments define their ResponseConclusion values.

Return Value

CategoricalEntailmentEnsembleClassifier
The CategoricalEntailmentEnsembleClassifier instance whose categorical entailments are represented by state, having the specified feature and response variables.

Remarks

The argument state must be a valid input for the objective (performance) function defined by this context.

Exceptions

ArgumentNullExceptionstate is null.
-or-
featureVariables is null.
-or-
responseVariable is null.
ArgumentException The state has not the Count expected given the NumberOfCategoricalEntailments of this instance.
-or-
featureVariables has not the same Count of the FeatureCategoryCounts of this instance.
-or-
Some variable in featureVariables has not the Count expected given the the FeatureCategoryCounts of this instance.
-or-
responseVariable has not the Count expected given the the NumberOfResponseCategories of this instance.

See Also