CategoricalEntailmentEnsembleClassifier Constructor

Initializes a new instance of the CategoricalEntailmentEnsembleClassifier class whose categorical entailments will classify items from the space defined by the specified feature variables by assigning categories of the given response variable.

Definition

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

Parameters

featureVariables  IListCategoricalVariable
The collection of categorical variables that define the space whose items can be classified from this instance.
responseVariable  CategoricalVariable
The response variable whose categories must be assigned to classify items in a feature space through this instance.

Remarks

Empty feature or response domains are not allowed.

Exceptions

ArgumentNullExceptionfeatureVariables is null.
-or-
responseVariable is null.
ArgumentExceptionfeatureVariables is empty since its Count is zero.
-or-
featureVariables contains at least a variable that has no categories.
-or-
responseVariable has no categories.

See Also