|
AssociationRuleMatcher< T> . Decide Method (T[] [] ,T[] [] [] )
|
Computes a class-label decision for a given input.
Namespace:
Accord.MachineLearning.Rules
Assembly:
Accord.MachineLearning (in Accord.MachineLearning.dll) Version: 3.8.0
Syntaxpublic T[][][] Decide(
T[][] input,
T[][][] result
)
Public Function Decide (
input As T()(),
result As T()()()
) As T()()()
Request Example
View SourceParameters
- input
- Type:T[][]
The input vector that should be classified into
one of the NumberOfOutputs possible classes. - result
- Type:T[][][]
An array where the distances will be stored,
avoiding unnecessary memory allocations.
Return Value
Type:
T[][][]
A class-label that best described
input according
to this classifier.
See Also