|
ProportionalHazardsLogLikelihood Method (TupleDouble, Double, 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.Statistics.Models.Regression
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax public override double[] LogLikelihood(
Tuple<double[], double>[] input,
double[] result
)
Public Overrides Function LogLikelihood (
input As Tuple(Of Double(), Double)(),
result As Double()
) As Double()
Request Example
View SourceParameters
- input
- Type: SystemTupleDouble, Double
The input vector. - result
- Type: SystemDouble
An array where the log-likelihoods will be stored,
avoiding unnecessary memory allocations.
Return Value
Type:
DoubleImplements
IMulticlassLikelihoodClassifierTInputLogLikelihood(TInput, Double)See Also