Record Class CRF.Options
java.lang.Object
java.lang.Record
smile.sequence.CRF.Options
- Record Components:
ntrees- the number of trees/iterations.maxDepth- the maximum depth of the tree.maxNodes- the maximum number of leaf nodes in the tree.nodeSize- the number of instances in a node below which the tree will not split, setting nodeSize = 5 generally gives good results.shrinkage- the shrinkage parameter in (0, 1] controls the learning rate of procedure.
- Enclosing class:
CRF
public static record CRF.Options(int ntrees, int maxDepth, int maxNodes, int nodeSize, double shrinkage)
extends Record
CRF 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.intmaxDepth()Returns the value of themaxDepthrecord component.intmaxNodes()Returns the value of themaxNodesrecord component.intnodeSize()Returns the value of thenodeSizerecord component.intntrees()Returns the value of thentreesrecord component.static CRF.Optionsof(Properties props) Returns the options from properties.doubleReturns the value of theshrinkagerecord component.Returns the persistent set of hyperparameters.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
Options
public Options(int ntrees, int maxDepth, int maxNodes, int nodeSize, double shrinkage) Constructor. -
Options
public Options()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. -
ntrees
-
maxDepth
-
maxNodes
-
nodeSize
-
shrinkage
-