Package org.apache.spark.ml.optim
Interface NormalEquationSolver
public interface NormalEquationSolver
Interface for classes that solve the normal equations locally.
-
Method Summary
Modifier and TypeMethodDescriptionorg.apache.spark.ml.optim.NormalEquationSolution
solve
(double bBar, double bbBar, DenseVector abBar, DenseVector aaBar, DenseVector aBar) Solve the normal equations from summary statistics.
-
Method Details
-
solve
org.apache.spark.ml.optim.NormalEquationSolution solve(double bBar, double bbBar, DenseVector abBar, DenseVector aaBar, DenseVector aBar) Solve the normal equations from summary statistics.
-