|
BinaryLikelihoodClassifierBaseTInputProbabilities Method (TInput, Boolean, Double)
|
Predicts a class label vector for each input vector, returning the
probabilities of the input vector belonging to each possible class.
Namespace:
Accord.MachineLearning
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.6.0
Syntaxpublic double[][] Probabilities(
TInput[] input,
ref bool[][] decision,
double[][] result
)
Public Function Probabilities (
input As TInput(),
ByRef decision As Boolean()(),
result As Double()()
) As Double()()
Request Example
View SourceParameters
- input
- Type: TInput
A set of input vectors. - decision
- Type: SystemBoolean
The labels predicted by the classifier. - result
- Type: SystemDouble
An array where the probabilities will be stored,
avoiding unnecessary memory allocations.
Return Value
Type:
DoubleSystem.Double[][].
Implements
IMultilabelLikelihoodClassifierTInput, TClassesProbabilities(TInput, TClasses, Double)
See Also