|
GeneralizedLinearRegressionGetLogLikelihood Method (Double, Double)
|
Gets the Log-Likelihood for the model.
Namespace:
Accord.Statistics.Models.Regression
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax public double GetLogLikelihood(
double[][] input,
double[] output
)
Public Function GetLogLikelihood (
input As Double()(),
output As Double()
) As Double
Request Example
View SourceParameters
- input
- Type: SystemDouble
A set of input data. - output
- Type: SystemDouble
A set of output data.
Return Value
Type:
Double
The Log-Likelihood (a measure of performance) of
the model calculated over the given data sets.
See Also