public class SpectralClusteringParameter extends Object
Modifier and Type | Field and Description |
---|---|
int |
algorithm
algorithm to use
|
int |
evs_max_iter
maximum number of iterations of the eigensolver
|
float |
evs_tolerance
tolerance of the eigensolver
|
int |
kmean_max_iter
maximum number of iterations of kemeans
|
float |
kmean_tolerance
tolerance of kmeans
|
int |
n_clusters
number of clusters
|
int |
n_eig_vects
number of eigenvectors
|
Pointer |
opt
optional parameter that can be used for preconditioning in the future
|
Constructor and Description |
---|
SpectralClusteringParameter()
Creates a new, uninitialized SpectralClusteringParameter
|
SpectralClusteringParameter(int n_clusters,
int n_eig_vects,
int algorithm,
float evs_tolerance,
int evs_max_iter,
float kmean_tolerance,
int kmean_max_iter,
Pointer opt)
Creates a new SpectralClusteringParameter with the given values
|
public int n_clusters
public int n_eig_vects
public int algorithm
public float evs_tolerance
public int evs_max_iter
public float kmean_tolerance
public int kmean_max_iter
public Pointer opt
public SpectralClusteringParameter()
public SpectralClusteringParameter(int n_clusters, int n_eig_vects, int algorithm, float evs_tolerance, int evs_max_iter, float kmean_tolerance, int kmean_max_iter, Pointer opt)
n_clusters
- The n_clusters valuen_eig_vects
- The n_eig_vects valuealgorithm
- The algorithm valueevs_tolerance
- The evs_tolerance valueevs_max_iter
- The evs_max_iter valuekmean_tolerance
- The kmean_tolerance valuekmean_max_iter
- The kmean_max_iter valueopt
- The opt valueCopyright © 2018. All rights reserved.