You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Apache Spark (JIRA)" <ji...@apache.org> on 2015/06/24 17:15:04 UTC

[jira] [Assigned] (SPARK-5962) [MLLIB] Python support for Power Iteration Clustering

     [ https://issues.apache.org/jira/browse/SPARK-5962?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Apache Spark reassigned SPARK-5962:
-----------------------------------

    Assignee: Apache Spark  (was: Stephen Boesch)

> [MLLIB] Python support for Power Iteration Clustering
> -----------------------------------------------------
>
>                 Key: SPARK-5962
>                 URL: https://issues.apache.org/jira/browse/SPARK-5962
>             Project: Spark
>          Issue Type: New Feature
>          Components: MLlib
>            Reporter: Stephen Boesch
>            Assignee: Apache Spark
>              Labels: python
>   Original Estimate: 168h
>  Remaining Estimate: 168h
>
> Add python support for the Power Iteration Clustering feature.  Here is a fragment of the python API as we plan to implement it:
>   /**
>    * Java stub for Python mllib PowerIterationClustering.run()
>    */
>   def trainPowerIterationClusteringModel(
>       data: JavaRDD[(java.lang.Long, java.lang.Long, java.lang.Double)],
>       k: Int,
>       maxIterations: Int,
>       runs: Int,
>       initializationMode: String,
>       seed: java.lang.Long): PowerIterationClusteringModel = {
>     val picAlg = new PowerIterationClustering()
>       .setK(k)
>       .setMaxIterations(maxIterations)
>     try {
>       picAlg.run(data.rdd.persist(StorageLevel.MEMORY_AND_DISK))
>     } finally {
>       data.rdd.unpersist(blocking = false)
>     }
>   }



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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