Record Class RegressionTree.Options
java.lang.Object
java.lang.Record
smile.regression.RegressionTree.Options
- Record Components:
maxDepth- the maximum depth of the tree.maxNodes- the maximum number of leaf nodes in the tree.nodeSize- the minimum size of leaf nodes.
- Enclosing class:
RegressionTree
public static record RegressionTree.Options(int maxDepth, int maxNodes, int nodeSize)
extends Record
Regression tree 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.static RegressionTree.Optionsof(Properties props) Returns the options from properties.Returns the persistent set of hyperparameters includingsmile.cart.max_depthsmile.cart.max_nodessmile.cart.node_sizefinal StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
Options
public Options(int maxDepth, int maxNodes, int nodeSize) Constructor. -
Options
public Options()Constructor.
-
-
Method Details
-
toProperties
Returns the persistent set of hyperparameters includingsmile.cart.max_depthsmile.cart.max_nodessmile.cart.node_size
- 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. -
maxDepth
-
maxNodes
-
nodeSize
-