You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by me...@apache.org on 2015/07/01 20:57:54 UTC

spark git commit: [SPARK-8765] [MLLIB] [PYTHON] removed flaky python PIC test

Repository: spark
Updated Branches:
  refs/heads/master 201291335 -> b8faa3287


[SPARK-8765] [MLLIB] [PYTHON] removed flaky python PIC test

See failure: [https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/36133/console]

CC yanboliang  mengxr

Author: Joseph K. Bradley <jo...@databricks.com>

Closes #7164 from jkbradley/pic-python-test and squashes the following commits:

156d55b [Joseph K. Bradley] removed flaky python PIC test


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

Branch: refs/heads/master
Commit: b8faa32875aa560cdce340266d898902a920418d
Parents: 2012913
Author: Joseph K. Bradley <jo...@databricks.com>
Authored: Wed Jul 1 11:57:52 2015 -0700
Committer: Xiangrui Meng <me...@databricks.com>
Committed: Wed Jul 1 11:57:52 2015 -0700

----------------------------------------------------------------------
 python/pyspark/mllib/clustering.py | 4 ----
 1 file changed, 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/b8faa328/python/pyspark/mllib/clustering.py
----------------------------------------------------------------------
diff --git a/python/pyspark/mllib/clustering.py b/python/pyspark/mllib/clustering.py
index e3c8a24..a3eab63 100644
--- a/python/pyspark/mllib/clustering.py
+++ b/python/pyspark/mllib/clustering.py
@@ -288,16 +288,12 @@ class PowerIterationClusteringModel(JavaModelWrapper, JavaSaveable, JavaLoader):
     >>> model = PowerIterationClustering.train(rdd, 2, 100)
     >>> model.k
     2
-    >>> sorted(model.assignments().collect())
-    [Assignment(id=0, cluster=1), Assignment(id=1, cluster=0), ...
     >>> import os, tempfile
     >>> path = tempfile.mkdtemp()
     >>> model.save(sc, path)
     >>> sameModel = PowerIterationClusteringModel.load(sc, path)
     >>> sameModel.k
     2
-    >>> sorted(sameModel.assignments().collect())
-    [Assignment(id=0, cluster=1), Assignment(id=1, cluster=0), ...
     >>> from shutil import rmtree
     >>> try:
     ...     rmtree(path)


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