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 Details

    • Options

      public Options(int ntrees, int maxDepth, int maxNodes, int nodeSize, double shrinkage)
      Constructor.
    • Options

      public Options()
      Constructor.
  • Method Details

    • toProperties

      public Properties toProperties()
      Returns the persistent set of hyperparameters.
      Returns:
      the persistent set.
    • of

      public static CRF.Options of(Properties props)
      Returns the options from properties.
      Parameters:
      props - the hyperparameters.
      Returns:
      the options.
    • toString

      public final String toString()
      Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • hashCode

      public final int hashCode()
      Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      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 '=='.
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • ntrees

      public int ntrees()
      Returns the value of the ntrees record component.
      Returns:
      the value of the ntrees record component
    • maxDepth

      public int maxDepth()
      Returns the value of the maxDepth record component.
      Returns:
      the value of the maxDepth record component
    • maxNodes

      public int maxNodes()
      Returns the value of the maxNodes record component.
      Returns:
      the value of the maxNodes record component
    • nodeSize

      public int nodeSize()
      Returns the value of the nodeSize record component.
      Returns:
      the value of the nodeSize record component
    • shrinkage

      public double shrinkage()
      Returns the value of the shrinkage record component.
      Returns:
      the value of the shrinkage record component