ILNumerics - Technical Application Development
Assembly: ILNumerics.Toolboxes.MachineLearning (in ILNumerics.Toolboxes.MachineLearning.dll) Version: 5.5.0.0 (5.5.7503.3146)
Train result used for applying the model to new data.
Ordinary least squares regression/ ridge regression.
[ILNumerics Machine Learning Toolbox]
Namespace: ILNumerics.Toolboxes
Assembly: ILNumerics.Toolboxes.MachineLearning (in ILNumerics.Toolboxes.MachineLearning.dll) Version: 5.5.0.0 (5.5.7503.3146)
Syntax
public static MachineLearningRidgeRegressionResult<double> ridge_regression( InArray<double> X, InArray<double> Y, BaseArray Degree, BaseArray Regularization )
Parameters
- X
- Type: ILNumericsInArrayDouble
Data matrix, data points in columns. - Y
- Type: ILNumericsInArrayDouble
Training targets (or 'labels') corresponding to X. - Degree
- Type: ILNumericsBaseArray
Highest degree of polynomials for the design matrix. - Regularization
- Type: ILNumericsBaseArray
Regularization constant (usually some "small" summand for stabilizing the matrix inversion).
Return Value
Type: MachineLearningRidgeRegressionResultDoubleTrain result used for applying the model to new data.
Remarks
[ILNumerics Machine Learning Toolbox]
See Also