jml.options
Class SpectralClusteringOptions

java.lang.Object
  extended by jml.options.ClusteringOptions
      extended by jml.options.SpectralClusteringOptions

public class SpectralClusteringOptions
extends ClusteringOptions


Field Summary
 java.lang.String graphDistanceFunction
           
 double graphParam
           
 java.lang.String graphType
           
 double graphWeightParam
           
 java.lang.String graphWeightType
           
 
Fields inherited from class jml.options.ClusteringOptions
maxIter, nClus, verbose
 
Constructor Summary
SpectralClusteringOptions()
          Constructor with default data member values:
SpectralClusteringOptions(ClusteringOptions clusteringOptions)
           
SpectralClusteringOptions(int nClus)
           
SpectralClusteringOptions(int nClus, boolean verbose, int maxIter, java.lang.String graphType, double graphParam, java.lang.String graphDistanceFunction, java.lang.String graphWeightType, double graphWeightParam)
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

graphType

public java.lang.String graphType

graphParam

public double graphParam

graphDistanceFunction

public java.lang.String graphDistanceFunction

graphWeightType

public java.lang.String graphWeightType

graphWeightParam

public double graphWeightParam
Constructor Detail

SpectralClusteringOptions

public SpectralClusteringOptions()
Constructor with default data member values:

graphType = "nn";
graphParam = 6;
graphDistanceFunction = "euclidean";
graphWeightType = "heat";
graphWeightParam = 1;


SpectralClusteringOptions

public SpectralClusteringOptions(int nClus)

SpectralClusteringOptions

public SpectralClusteringOptions(int nClus,
                                 boolean verbose,
                                 int maxIter,
                                 java.lang.String graphType,
                                 double graphParam,
                                 java.lang.String graphDistanceFunction,
                                 java.lang.String graphWeightType,
                                 double graphWeightParam)

SpectralClusteringOptions

public SpectralClusteringOptions(ClusteringOptions clusteringOptions)