Record Class SVM.Options
java.lang.Object
java.lang.Record
smile.regression.SVM.Options
- Record Components:
eps- the parameter of epsilon-insensitive hinge loss. There is no penalty associated with samples which are predicted within distance epsilon from the actual value. Decreasing epsilon forces closer fitting to the calibration/training data.C- the soft margin penalty parameter.tol- the tolerance of convergence test.
- Enclosing class:
SVM
SVM hyperparameters.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiondoubleC()Returns the value of theCrecord component.doubleeps()Returns the value of theepsrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.static SVM.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
public Options(double eps, double C, double tol) Constructor. -
Options
public Options(double eps, double C) Constructor.- Parameters:
eps- the parameter of epsilon-insensitive hinge loss. There is no penalty associated with samples which are predicted within distance epsilon from the actual value. Decreasing epsilon forces closer fitting to the calibration/training data.C- the soft margin penalty parameter.
-
-
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. -
eps
-
C
-
tol
-