Package com.jml.linear_models


package com.jml.linear_models
  • Class Summary
    Class
    Description
    Model for ordinary least squares linear regression of one variable.

    LinearRegression fits a model y = b0 + b1x to the datasets by minimizing the residuals of the sum of squares between the values in the target dataset and the values predicted by the model.
    Model for least squares linear regression of one variable by stochastic gradient descent.

    LinearRegressionSGD fits a model y = b0 + b1x to the datasets by minimizing the residuals of the sum of squares between the values in the target dataset and the values predicted by the model.
    Model for least squares linear regression of multiple variables by least squares.

    MultipleLinearRegression fits a model y = b0 + b1x1 + ...
    Model for least squares linear regression of multiple variables by stochastic gradient descent.

    MultipleLinearRegressionSGD fits a model y = b0 + b1x1 + ...
    A perceptron is a linear model that is equivalent to a single layer neural network.

    When a perceptron model is saved, it will be saved as a neural network model.
    Model for least squares linear regression of polynomials.

    PolynomialRegression fits a model y = b0 + b1x + b2x2 + ...
    Model for least squares regression of polynomials using Stochastic Gradient Descent.

    PolynomialRegression fits a model y = b0 + b1x + b2x2 + ...
  • Enum Class Summary
    Enum Class
    Description