|
CodificationTOptionsDecide Method (T, Int32)
|
Computes class-label decisions for each vector in the given input.
Namespace:
Accord.Statistics.Filters
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntaxpublic int[] Decide(
T[] input,
int[] result
)
Public Function Decide (
input As T(),
result As Integer()
) As Integer()
Request Example
View SourceParameters
- input
- Type: T
The input vectors that should be classified into
one of the NumberOfOutputs possible classes. - result
- Type: SystemInt32
The location where to store the class-labels.
Return Value
Type:
Int32The class-labels that best describe each
input
vectors according to this classifier.
Implements
IClassifierTInput, TClassesDecide(TInput, TClasses)
See Also