Record Class MEC.Options
java.lang.Object
java.lang.Record
smile.clustering.MEC.Options
- Record Components:
k- the maximum number of clusters.radius- the neighborhood radius.maxIter- the maximum number of iterations.tol- the tolerance of convergence test.controller- the optional training controller.
public static record MEC.Options(int k, double radius, int maxIter, double tol, IterativeAlgorithmController<AlgoStatus> controller)
extends Record
MEC hyperparameters.
-
Constructor Summary
ConstructorsConstructorDescriptionOptions(int k, double radius) Constructor.Options(int k, double radius, 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 MEC.Optionsof(Properties props) Returns the options from properties.doubleradius()Returns the value of theradiusrecord component.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
public Options(int k, double radius, int maxIter, double tol, IterativeAlgorithmController<AlgoStatus> controller) Constructor. -
Options
public Options(int k, double radius) Constructor.- Parameters:
k- the maximum number of clusters.radius- the neighborhood radius.
-
-
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
-
radius
-
maxIter
-
tol
-
controller
Returns the value of thecontrollerrecord component.- Returns:
- the value of the
controllerrecord component
-