Record Class Clustering.Options
java.lang.Object
java.lang.Record
smile.clustering.Clustering.Options
- Record Components:
k- the number of clusters.maxIter- the maximum number of iterations.tol- the tolerance of convergence test.controller- the optional training controller.
- Enclosing interface:
Clustering
public static record Clustering.Options(int k, int maxIter, double tol, IterativeAlgorithmController<AlgoStatus> controller)
extends Record
Iterative clustering algorithm hyperparameters.
-
Constructor Summary
ConstructorsConstructorDescriptionOptions(int k, int maxIter) Constructor.Options(int k, int maxIter, double tol, IterativeAlgorithmController<AlgoStatus> controller) Constructor. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thecontrollerrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.intk()Returns the value of thekrecord component.intmaxIter()Returns the value of themaxIterrecord component.static Clustering.Optionsof(Properties props) Returns the options from properties.doubletol()Returns the value of thetolrecord component.Returns the persistent set of hyperparameters.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
Options
Constructor. -
Options
public Options(int k, int maxIter) Constructor.- Parameters:
k- the number of clusters.maxIter- the maximum number of iterations.
-
-
Method Details
-
toProperties
Returns the persistent set of hyperparameters.- Returns:
- the persistent set.
-
of
Returns the options from properties.- Parameters:
props- the hyperparameters.- Returns:
- the options.
-
toString
-
hashCode
-
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with thecomparemethod from their corresponding wrapper classes. -
k
-
maxIter
-
tol
-
controller
Returns the value of thecontrollerrecord component.- Returns:
- the value of the
controllerrecord component
-