Record Class GradientTreeBoost.Options
java.lang.Object
java.lang.Record
smile.regression.GradientTreeBoost.Options
- Record Components:
loss- loss function for regression. By default, least absolute deviation is employed for robust regression.ntrees- the number of iterations (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. Setting nodeSize = 5 generally gives good results.shrinkage- the shrinkage parameter in (0, 1] controls the learning rate of procedure.subsample- the sampling fraction for stochastic tree boosting.test- the optional test data for validation per epoch.controller- the optional training controller.
- Enclosing class:
GradientTreeBoost
public static record GradientTreeBoost.Options(Loss loss, int ntrees, int maxDepth, int maxNodes, int nodeSize, double shrinkage, double subsample, DataFrame test, IterativeAlgorithmController<GradientTreeBoost.TrainingStatus> controller)
extends Record
Gradient tree boosting hyperparameters.
-
Constructor Summary
ConstructorsConstructorDescriptionOptions(int ntrees) Constructor with the least absolute deviation loss.Constructor.Options(Loss loss, int ntrees, int maxDepth, int maxNodes, int nodeSize, double shrinkage, double subsample, DataFrame test, IterativeAlgorithmController<GradientTreeBoost.TrainingStatus> controller) Constructor. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thecontrollerrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.loss()Returns the value of thelossrecord component.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 GradientTreeBoost.Optionsof(Properties props) Returns the options from properties.doubleReturns the value of theshrinkagerecord component.doubleReturns the value of thesubsamplerecord component.test()Returns the value of thetestrecord component.Returns the persistent set of hyperparameters.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
Options
public Options(Loss loss, int ntrees, int maxDepth, int maxNodes, int nodeSize, double shrinkage, double subsample, DataFrame test, IterativeAlgorithmController<GradientTreeBoost.TrainingStatus> controller) Constructor. -
Options
public Options(int ntrees) Constructor with the least absolute deviation loss.- Parameters:
ntrees- the number of iterations (trees).
-
Options
Constructor.- Parameters:
loss- loss function for regression.ntrees- the number of iterations (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
-
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with thecomparemethod from their corresponding wrapper classes. -
loss
-
ntrees
-
maxDepth
-
maxNodes
-
nodeSize
-
shrinkage
-
subsample
-
test
-
controller
Returns the value of thecontrollerrecord component.- Returns:
- the value of the
controllerrecord component
-