Repository: spark Updated Branches: refs/heads/master 5aa0f219d -> 38a416f03
[SPARK-5585] Flaky test in MLlib python Add a seed for tests. Author: Davies Liu <[email protected]> Closes #4358 from davies/flaky_test and squashes the following commits: 02371c3 [Davies Liu] Merge branch 'master' of github.com:apache/spark into flaky_test ced499b [Davies Liu] add seed for test Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/38a416f0 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/38a416f0 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/38a416f0 Branch: refs/heads/master Commit: 38a416f0360fa68fc445af14910fb253ff9ad493 Parents: 5aa0f21 Author: Davies Liu <[email protected]> Authored: Wed Feb 4 08:54:20 2015 -0800 Committer: Xiangrui Meng <[email protected]> Committed: Wed Feb 4 08:54:20 2015 -0800 ---------------------------------------------------------------------- python/pyspark/mllib/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/38a416f0/python/pyspark/mllib/tests.py ---------------------------------------------------------------------- diff --git a/python/pyspark/mllib/tests.py b/python/pyspark/mllib/tests.py index 42aa228..49e5c9d 100644 --- a/python/pyspark/mllib/tests.py +++ b/python/pyspark/mllib/tests.py @@ -285,7 +285,7 @@ class ListTests(PySparkTestCase): self.assertTrue(dt_model.predict(features[3]) > 0) rf_model = RandomForest.trainRegressor( - rdd, categoricalFeaturesInfo=categoricalFeaturesInfo, numTrees=100) + rdd, categoricalFeaturesInfo=categoricalFeaturesInfo, numTrees=100, seed=1) self.assertTrue(rf_model.predict(features[0]) <= 0) self.assertTrue(rf_model.predict(features[1]) > 0) self.assertTrue(rf_model.predict(features[2]) <= 0) --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
