IntegerParameter | R Documentation |
A class for representing hyperparameters that have an integer range of possible values.
sagemaker.mlcore::ParameterRange
-> IntegerParameter
.name
Helps to categorise Class
new()
Initialize a IntegerParameter
IntegerParameter$new( min_value, max_value, scaling_type = c("Auto", "Linear", "Logarithmic", "ReverseLogarithmic") )
min_value
(int): The minimum value for the range.
max_value
(int): The maximum value for the range.
scaling_type
(str): The scale used for searching the range during tuning (default: 'Auto'). Valid values: 'Auto', 'Linear', Logarithmic' and 'ReverseLogarithmic'.
cast_to_type()
cast value to integer
IntegerParameter$cast_to_type(value)
value
The value to be verified.
clone()
The objects of this class are cloneable with this method.
IntegerParameter$clone(deep = FALSE)
deep
Whether to make a deep clone.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.