Click or drag to resize

NMFClusteringAlg(Int32, Int32, Int32, Alg) Constructor

Constructs NMFClustering instance with the given parameters.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public NMFClustering(
	int maximumIterations,
	int stoppingAdjacency,
	int convergenceCheckPeriod,
	Alg updater
)

Parameters

maximumIterations  Int32
The maximum number of iterations. Iteration will stop after this number of iterations if the algorithm has not converged.
stoppingAdjacency  Int32
The stopping adjacency. The stopping adjacency is the number of consecutively unchanged connection matrices that must be observed before convergence.
convergenceCheckPeriod  Int32
Convergence will be checked every
C#
convergenceCheckPeriod
iterations.
updater  Alg
NMF iteration update algortithm to use.
See Also