Gets or sets the log-likelihood value. On return from a query the value will be null unless LogLikelihood is set to true.

Namespace:  BayesServer.Inference
Assembly:  BayesServer.Inference (in BayesServer.Inference.dll)
Version: 2.2.0.0 (2.2.0.0)

Syntax

C#
Nullable<double> LogLikelihood { get; set; }
Visual Basic (Declaration)
Property LogLikelihood As Nullable(Of Double)
Visual C++
property Nullable<double> LogLikelihood {
	Nullable<double> get ();
	void set (Nullable<double> value);
}

Remarks

The log-likelihood should only be requested if required.

The natural log (base e) is returned of null if not requested.

See Also