-
- Downloads
[SPARK-17792][ML] L-BFGS solver for linear regression does not accept general...
[SPARK-17792][ML] L-BFGS solver for linear regression does not accept general numeric label column types ## What changes were proposed in this pull request? Before, we computed `instances` in LinearRegression in two spots, even though they did the same thing. One of them did not cast the label column to `DoubleType`. This patch consolidates the computation and always casts the label column to `DoubleType`. ## How was this patch tested? Added a unit test to check all solvers. This test failed before this patch. Author: sethah <seth.hendrickson16@gmail.com> Closes #15364 from sethah/linreg_numeric_type.
Showing
- mllib/src/main/scala/org/apache/spark/ml/regression/LinearRegression.scala 6 additions, 11 deletions...ala/org/apache/spark/ml/regression/LinearRegression.scala
- mllib/src/test/scala/org/apache/spark/ml/regression/LinearRegressionSuite.scala 5 additions, 3 deletions...rg/apache/spark/ml/regression/LinearRegressionSuite.scala
Loading
Please register or sign in to comment