Package smile.classification
Record Class AdaBoost.Options
java.lang.Object
java.lang.Record
smile.classification.AdaBoost.Options
- Record Components:
ntrees
- the number of trees.maxDepth
- the maximum depth of the tree.maxNodes
- the maximum number of leaf nodes in the tree.nodeSize
- the minimum size of leaf nodes.test
- the optional test data for validation per epoch.controller
- the optional training controller.
- Enclosing class:
AdaBoost
public static record AdaBoost.Options(int ntrees, int maxDepth, int maxNodes, int nodeSize, DataFrame test, IterativeAlgorithmController<AdaBoost.TrainingStatus> controller)
extends Record
AdaBoost hyperparameters.
-
Constructor Summary
ConstructorsConstructorDescriptionOptions
(int ntrees) Constructor.Options
(int ntrees, int maxDepth, int maxNodes, int nodeSize, DataFrame test, IterativeAlgorithmController<AdaBoost.TrainingStatus> controller) Constructor. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thecontroller
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.int
maxDepth()
Returns the value of themaxDepth
record component.int
maxNodes()
Returns the value of themaxNodes
record component.int
nodeSize()
Returns the value of thenodeSize
record component.int
ntrees()
Returns the value of thentrees
record component.static AdaBoost.Options
of
(Properties props) Returns the options from properties.test()
Returns the value of thetest
record component.Returns the persistent set of hyperparameters.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
Options
public Options(int ntrees, int maxDepth, int maxNodes, int nodeSize, DataFrame test, IterativeAlgorithmController<AdaBoost.TrainingStatus> controller) Constructor. -
Options
public Options(int ntrees) Constructor.- Parameters:
ntrees
- the number of trees.
-
-
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
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. -
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. -
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. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
ntrees
public int ntrees()Returns the value of thentrees
record component.- Returns:
- the value of the
ntrees
record component
-
maxDepth
public int maxDepth()Returns the value of themaxDepth
record component.- Returns:
- the value of the
maxDepth
record component
-
maxNodes
public int maxNodes()Returns the value of themaxNodes
record component.- Returns:
- the value of the
maxNodes
record component
-
nodeSize
public int nodeSize()Returns the value of thenodeSize
record component.- Returns:
- the value of the
nodeSize
record component
-
test
Returns the value of thetest
record component.- Returns:
- the value of the
test
record component
-
controller
Returns the value of thecontroller
record component.- Returns:
- the value of the
controller
record component
-