RegularizedRegressionModel.GetRegularizationPathParameters Method

Definition

Namespace: Numerics.NET.Statistics
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

Overload List

GetRegularizationPathParameters() Constructs a vector of suitable regularization parameter values based on the model's data.
GetRegularizationPathParameters(Int32) Constructs a range of suitable regularization parameter values based on the model's data.
GetRegularizationPathParameters(Int32, Double) Constructs a range of suitable regularization parameter values based on the model's data.

GetRegularizationPathParameters

Constructs a vector of suitable regularization parameter values based on the model's data.
C#
public Vector<double> GetRegularizationPathParameters()

Return Value

Vector<Double>
A vector containing a logarithmic range of regularization parameter values.

GetRegularizationPathParameters(Int32)

Constructs a range of suitable regularization parameter values based on the model's data.
C#
public Vector<double> GetRegularizationPathParameters(
	int length
)

Parameters

length  Int32
The number of values to return.

Return Value

Vector<Double>
A vector containing a logarithmic range of regularization parameter values.

GetRegularizationPathParameters(Int32, Double)

Constructs a range of suitable regularization parameter values based on the model's data.
C#
public Vector<double> GetRegularizationPathParameters(
	int length,
	double range
)

Parameters

length  Int32
The number of values to return.
range  Double
The range of the parameters.

Return Value

Vector<Double>
A vector containing a logarithmic range of regularization parameter values.

See Also