Repository: spark
Updated Branches:
  refs/heads/branch-1.4 2a7ea31a9 -> b836bac3f


[HOTFIX] Hotfix branch-1.4 building by removing avgMetrics in 
CrossValidatorSuite

Ref. #6905
ping yhuai

Author: Liang-Chi Hsieh <vii...@gmail.com>

Closes #6929 from viirya/hot_fix_cv_test and squashes the following commits:

b1aec53 [Liang-Chi Hsieh] Hotfix branch-1.4 by removing avgMetrics in 
CrossValidatorSuite.


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

Branch: refs/heads/branch-1.4
Commit: b836bac3fe3e929ddef70851a1c93980ffa04820
Parents: 2a7ea31
Author: Liang-Chi Hsieh <vii...@gmail.com>
Authored: Sun Jun 21 22:25:08 2015 -0700
Committer: Yin Huai <yh...@databricks.com>
Committed: Sun Jun 21 22:25:08 2015 -0700

----------------------------------------------------------------------
 .../scala/org/apache/spark/ml/tuning/CrossValidatorSuite.scala     | 2 --
 1 file changed, 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/b836bac3/mllib/src/test/scala/org/apache/spark/ml/tuning/CrossValidatorSuite.scala
----------------------------------------------------------------------
diff --git 
a/mllib/src/test/scala/org/apache/spark/ml/tuning/CrossValidatorSuite.scala 
b/mllib/src/test/scala/org/apache/spark/ml/tuning/CrossValidatorSuite.scala
index d00b484..9a02c4f 100644
--- a/mllib/src/test/scala/org/apache/spark/ml/tuning/CrossValidatorSuite.scala
+++ b/mllib/src/test/scala/org/apache/spark/ml/tuning/CrossValidatorSuite.scala
@@ -78,14 +78,12 @@ class CrossValidatorSuite extends SparkFunSuite with 
MLlibTestSparkContext {
     val parent = cvModel.bestModel.parent.asInstanceOf[LinearRegression]
     assert(parent.getRegParam === 0.001)
     assert(parent.getMaxIter === 10)
-    assert(cvModel.avgMetrics.length === lrParamMaps.length)
 
     eval.setMetricName("r2")
     val cvModel2 = cv.fit(dataset)
     val parent2 = cvModel2.bestModel.parent.asInstanceOf[LinearRegression]
     assert(parent2.getRegParam === 0.001)
     assert(parent2.getMaxIter === 10)
-    assert(cvModel2.avgMetrics.length === lrParamMaps.length)
   }
 
   test("validateParams should check estimatorParamMaps") {


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

Reply via email to