Record Class KPCA.Options
java.lang.Object
java.lang.Record
smile.manifold.KPCA.Options
- Record Components:
d- the dimension of the projection.threshold- only principal components with eigenvalues larger than the given threshold will be kept.
Kernel PCA hyperparameters.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionintd()Returns the value of thedrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.static KPCA.Optionsof(Properties props) Returns the options from properties.doubleReturns the value of thethresholdrecord component.Returns the persistent set of hyperparameters.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
Options
public Options(int d, double threshold) Constructor. -
Options
public Options(int d) Constructor.- Parameters:
d- the dimension of the projection.
-
-
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. -
d
-
threshold
-