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