Click or drag to resize

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.

Namespace:  Novacta.Analytics.Advanced
Assembly:  Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.0.0
Syntax
public CategoricalEntailmentEnsembleClassifier GetCategoricalEntailmentEnsembleClassifier(
	DoubleMatrix state,
	List<CategoricalVariable> featureVariables,
	CategoricalVariable responseVariable
)

Parameters

state
Type: Novacta.AnalyticsDoubleMatrix
A matrix representing an element of the state-space defined by this context.
featureVariables
Type: System.Collections.GenericListCategoricalVariable
The list of feature categorical variables about which the represented entailments define their FeaturePremises.
responseVariable
Type: Novacta.AnalyticsCategoricalVariable
The categorical variable from which the represented entailments define their ResponseConclusion values.

Return Value

Type: CategoricalEntailmentEnsembleClassifier
The CategoricalEntailmentEnsembleClassifier instance whose categorical entailments are represented by state, having the specified feature and response variables.
Exceptions
ExceptionCondition
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.
Remarks

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

See Also