public void AddTrained(
CategoricalDataSet dataSet,
IndexCollection featureVariableIndexes,
int responseVariableIndex,
int numberOfTrainedCategoricalEntailments,
bool allowEntailmentPartialTruthValues,
bool trainSequentially
)
Public Sub AddTrained (
dataSet As CategoricalDataSet,
featureVariableIndexes As IndexCollection,
responseVariableIndex As Integer,
numberOfTrainedCategoricalEntailments As Integer,
allowEntailmentPartialTruthValues As Boolean,
trainSequentially As Boolean
)
public:
void AddTrained(
CategoricalDataSet^ dataSet,
IndexCollection^ featureVariableIndexes,
int responseVariableIndex,
int numberOfTrainedCategoricalEntailments,
bool allowEntailmentPartialTruthValues,
bool trainSequentially
)
member AddTrained :
dataSet : CategoricalDataSet *
featureVariableIndexes : IndexCollection *
responseVariableIndex : int *
numberOfTrainedCategoricalEntailments : int *
allowEntailmentPartialTruthValues : bool *
trainSequentially : bool -> unit
The entailments to be trained are added to the Entailments to optimally enlarge such collection by the specified numberOfTrainedCategoricalEntailments.
it is expected that featureVariableIndexes has the same count
of the FeatureVariables
of this instance,
and that the -th position
of featureVariableIndexes is the index of the
column that, in dataSet, contains observations
about the
-th feature variable of the classifier.
Furthermore, responseVariableIndex must be the index
of the column where, in dataSet, are stored
observations about
the ResponseVariable
of this instance.
ArgumentNullException | dataSet is null. -or- featureVariableIndexes is null. |
ArgumentOutOfRangeException | numberOfTrainedCategoricalEntailments is not positive. -or- featureVariableIndexes contains values which are not valid column indexes for the Data of dataSet. -or- responseVariableIndex is not a valid column index for the Data of dataSet. |
ArgumentException | featureVariableIndexes has not the same Count of the FeatureVariables of this instance. |