| IntegerParameter | R Documentation |
A class for representing hyperparameters that have an integer range of possible values.
sagemaker.mlcore::ParameterRange -> IntegerParameter
.nameHelps 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)
valueThe value to be verified.
clone()The objects of this class are cloneable with this method.
IntegerParameter$clone(deep = FALSE)
deepWhether to make a deep clone.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.