Interface PowerIterationClusteringParams

All Superinterfaces:
HasMaxIter, HasWeightCol, Identifiable, Params, Serializable, scala.Serializable
All Known Implementing Classes:
PowerIterationClustering

public interface PowerIterationClusteringParams extends Params, HasMaxIter, HasWeightCol
Common params for PowerIterationClustering
  • Method Details

    • dstCol

      Param<String> dstCol()
      Name of the input column for destination vertex IDs. Default: "dst"
      Returns:
      (undocumented)
    • getDstCol

      String getDstCol()
    • getInitMode

      String getInitMode()
    • getK

      int getK()
    • getSrcCol

      String getSrcCol()
    • initMode

      Param<String> initMode()
      Param for the initialization algorithm. This can be either "random" to use a random vector as vertex properties, or "degree" to use a normalized sum of similarities with other vertices. Default: random.
      Returns:
      (undocumented)
    • k

      The number of clusters to create (k). Must be &gt; 1. Default: 2.
      Returns:
      (undocumented)
    • srcCol

      Param<String> srcCol()
      Param for the name of the input column for source vertex IDs. Default: "src"
      Returns:
      (undocumented)