Interface ColumnInfo

Each column of X has its own life and its metadata is stored separately.

interface ColumnInfo {
    iterations: number;
    mse: number[];
    mseLast: number;
    mseMin: number;
}

Properties

iterations: number
mse: number[]

Mean Squared Error.

mseLast: number

Mean Squared Error in the last iteration.

mseMin: number

Minimum Mean Squared Error in all iterations It is also the Mean Squared Error of the returned coefficients.