Record Class HDBSCAN.Options
java.lang.Object
java.lang.Record
smile.clustering.HDBSCAN.Options
- Record Components:
minPoints- the number of neighbors for core-distance estimation.minClusterSize- the minimum cluster size used in hierarchy condensing.
HDBSCAN hyperparameters.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.intReturns the value of theminClusterSizerecord component.intReturns the value of theminPointsrecord component.static HDBSCAN.Optionsof(Properties props) Returns the options from properties.Returns the persistent set of hyperparameters.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
Options
public Options(int minPoints, int minClusterSize) Constructor.
-
-
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. All components in this record class are compared with thecomparemethod from their corresponding wrapper classes. -
minPoints
-
minClusterSize
public int minClusterSize()Returns the value of theminClusterSizerecord component.- Returns:
- the value of the
minClusterSizerecord component
-