Click or drag to resize

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.

Namespace:  Novacta.Analytics
Assembly:  Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.0.0
Syntax
public CategoricalEntailmentEnsembleClassifier(
	IList<CategoricalVariable> featureVariables,
	CategoricalVariable responseVariable
)

Parameters

featureVariables
Type: System.Collections.GenericIListCategoricalVariable
The collection of categorical variables that define the space whose items can be classified from this instance.
responseVariable
Type: Novacta.AnalyticsCategoricalVariable
The response variable whose categories must be assigned to classify items in a feature space through this instance.
Exceptions
ExceptionCondition
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.
Remarks

Empty feature or response domains are not allowed.

See Also