Click or drag to resize
Accord.NET (logo)

SupportVectorMachineTKernel, TInputLogLikelihood Method (TInput, Double)

Predicts a class label vector for the given input vectors, returning the log-likelihood that the input vector belongs to its predicted class.

Namespace:  Accord.MachineLearning.VectorMachines
Assembly:  Accord.MachineLearning (in Accord.MachineLearning.dll) Version: 3.8.0
Syntax
public override double[] LogLikelihood(
	TInput[] input,
	double[] result
)
Request Example View Source

Parameters

input
Type: TInput
The input vector.
result
Type: SystemDouble
An array where the log-likelihoods will be stored, avoiding unnecessary memory allocations.

Return Value

Type: Double
System.Double[].

Implements

IMulticlassLikelihoodClassifierTInputLogLikelihood(TInput, Double)
IMulticlassLikelihoodClassifierTInputLogLikelihood(TInput, Double)
See Also