Click or drag to resize
Accord.NET (logo)

GeneralizedLinearRegressionGetLogLikelihood Method (Double, 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,
	double[] weights
)
Request Example View Source

Parameters

input
Type: SystemDouble
A set of input data.
output
Type: SystemDouble
A set of output data.
weights
Type: SystemDouble
The weights associated with each input vector.

Return Value

Type: Double
The Log-Likelihood (a measure of performance) of the model calculated over the given data sets.
See Also