| 
            
              AssociationRuleMatcherTScores Method (T, T, Double)
             | 
          
        
         
            Predicts a class label vector for each input vector, returning a
            numerical score measuring the strength of association of the input vector
            to each of the possible classes.
            
 
    Namespace: 
   Accord.MachineLearning.Rules
    Assembly:
   Accord.MachineLearning (in Accord.MachineLearning.dll) Version: 3.8.0
Syntaxpublic double[][] Scores(
	T[][] input,
	ref T[][][] decision,
	double[][] result
)
Public Function Scores ( 
	input As T()(),
	ByRef decision As T()()(),
	result As Double()()
) As Double()()
 Request Example
		View SourceParameters
- input
 - Type: T
A set of input vectors. - decision
 - Type: T
The class labels associated with each input
            vector, as predicted by the classifier. If passed as null, the classifier
            will create a new array. - result
 - Type: SystemDouble
An array where the distances will be stored,
              avoiding unnecessary memory allocations. 
Return Value
Type: 
DoubleImplements
IMultilabelScoreClassifierBaseTInput, TClassesScores(TInput, TClasses, Double)
See Also