|
MulticlassClassifierBase. Decide Method (Int32[] [] ,Int32[] [] )
|
Computes a class-label decision for a given input.
Namespace:
Accord.MachineLearning
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntaxpublic int[][] Decide(
int[][] input,
int[][] result
)
Public Function Decide (
input As Integer()(),
result As Integer()()
) As Integer()()
Request Example
View SourceParameters
- input
- Type:System.Int32[][]
The input vector that should be classified into
one of the NumberOfOutputs possible classes. - result
- Type:System.Int32[][]
The location where to store the class-labels.
Return Value
Type:
Int32[][]
A class-label that best described
input according
to this classifier.
Implements
IClassifier<TInput, TClasses>.Decide(TInput[],TClasses[])
See Also