public CategoricalEntailmentEnsembleClassifier GetCategoricalEntailmentEnsembleClassifier(
DoubleMatrix state,
List<CategoricalVariable> featureVariables,
CategoricalVariable responseVariable
)
Public Function GetCategoricalEntailmentEnsembleClassifier (
state As DoubleMatrix,
featureVariables As List(Of CategoricalVariable),
responseVariable As CategoricalVariable
) As CategoricalEntailmentEnsembleClassifier
public:
CategoricalEntailmentEnsembleClassifier^ GetCategoricalEntailmentEnsembleClassifier(
DoubleMatrix^ state,
List<CategoricalVariable^>^ featureVariables,
CategoricalVariable^ responseVariable
)
member GetCategoricalEntailmentEnsembleClassifier :
state : DoubleMatrix *
featureVariables : List<CategoricalVariable> *
responseVariable : CategoricalVariable -> CategoricalEntailmentEnsembleClassifier
The argument state must be a valid input for the objective (performance) function defined by this context.
ArgumentNullException | state 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. |