Repository: spark
Updated Branches:
  refs/heads/master 38cdd6ccd -> ac8ff920f


[SPARK-17748][FOLLOW-UP][ML] Fix build error for Scala 2.10.

## What changes were proposed in this pull request?
#15394 introduced build error for Scala 2.10, this PR fix it.

## How was this patch tested?
Existing test.

Author: Yanbo Liang <yblia...@gmail.com>

Closes #15625 from yanboliang/spark-17748-scala.


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/ac8ff920
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/ac8ff920
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/ac8ff920

Branch: refs/heads/master
Commit: ac8ff920faec6ee06e17212e2b5d2ee117495e87
Parents: 38cdd6c
Author: Yanbo Liang <yblia...@gmail.com>
Authored: Tue Oct 25 10:22:02 2016 -0700
Committer: Yanbo Liang <yblia...@gmail.com>
Committed: Tue Oct 25 10:22:02 2016 -0700

----------------------------------------------------------------------
 .../spark/ml/optim/WeightedLeastSquaresSuite.scala     | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/ac8ff920/mllib/src/test/scala/org/apache/spark/ml/optim/WeightedLeastSquaresSuite.scala
----------------------------------------------------------------------
diff --git 
a/mllib/src/test/scala/org/apache/spark/ml/optim/WeightedLeastSquaresSuite.scala
 
b/mllib/src/test/scala/org/apache/spark/ml/optim/WeightedLeastSquaresSuite.scala
index 5f638b4..3cdab03 100644
--- 
a/mllib/src/test/scala/org/apache/spark/ml/optim/WeightedLeastSquaresSuite.scala
+++ 
b/mllib/src/test/scala/org/apache/spark/ml/optim/WeightedLeastSquaresSuite.scala
@@ -280,7 +280,7 @@ class WeightedLeastSquaresSuite extends SparkFunSuite with 
MLlibTestSparkContext
     }
 
     // Cholesky also fails when regularization is added but we don't wish to 
standardize
-    val wls = new WeightedLeastSquares(true, regParam = 0.5, elasticNetParam = 
0.0,
+    val wls = new WeightedLeastSquares(fitIntercept = true, regParam = 0.5, 
elasticNetParam = 0.0,
       standardizeFeatures = false, standardizeLabel = false,
       solverType = WeightedLeastSquares.Cholesky)
     intercept[SingularMatrixException] {
@@ -470,10 +470,11 @@ class WeightedLeastSquaresSuite extends SparkFunSuite 
with MLlibTestSparkContext
     var idx = 0
     for (fitIntercept <- Seq(false, true);
          regParam <- Seq(0.1, 0.5, 1.0);
-         standardizeFeatures <- Seq(false, true);
+         standardization <- Seq(false, true);
          elasticNetParam <- Seq(0.1, 0.5, 1.0)) {
-      val wls = new WeightedLeastSquares(fitIntercept, regParam, 
elasticNetParam = elasticNetParam,
-        standardizeFeatures, standardizeLabel = true, solverType = 
WeightedLeastSquares.Auto)
+      val wls = new WeightedLeastSquares(fitIntercept, regParam, 
elasticNetParam,
+        standardizeFeatures = standardization, standardizeLabel = true,
+        solverType = WeightedLeastSquares.Auto)
         .fit(instances)
       val actual = Vectors.dense(wls.intercept, wls.coefficients(0), 
wls.coefficients(1))
       assert(actual ~== expected(idx) absTol 1e-4)
@@ -528,10 +529,10 @@ class WeightedLeastSquaresSuite extends SparkFunSuite 
with MLlibTestSparkContext
     var idx = 0
     for (fitIntercept <- Seq(false, true);
          regParam <- Seq(0.0, 0.1, 1.0);
-         standardizeFeatures <- Seq(false, true)) {
+         standardization <- Seq(false, true)) {
       for (solver <- WeightedLeastSquares.supportedSolvers) {
         val wls = new WeightedLeastSquares(fitIntercept, regParam, 
elasticNetParam = 0.0,
-          standardizeFeatures, standardizeLabel = true, solverType = solver)
+          standardizeFeatures = standardization, standardizeLabel = true, 
solverType = solver)
           .fit(instances)
         val actual = Vectors.dense(wls.intercept, wls.coefficients(0), 
wls.coefficients(1))
         assert(actual ~== expected(idx) absTol 1e-4)


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org
For additional commands, e-mail: commits-h...@spark.apache.org

Reply via email to