| Copyright | (c) 2013-2023 Brendan Hay | 
|---|---|
| License | Mozilla Public License, v. 2.0. | 
| Maintainer | Brendan Hay | 
| Stability | auto-generated | 
| Portability | non-portable (GHC extensions) | 
| Safe Haskell | Safe-Inferred | 
| Language | Haskell2010 | 
Amazonka.SageMaker.Types.IntegerParameterRange
Description
Synopsis
- data IntegerParameterRange = IntegerParameterRange' {}
 - newIntegerParameterRange :: Text -> Text -> Text -> IntegerParameterRange
 - integerParameterRange_scalingType :: Lens' IntegerParameterRange (Maybe HyperParameterScalingType)
 - integerParameterRange_name :: Lens' IntegerParameterRange Text
 - integerParameterRange_minValue :: Lens' IntegerParameterRange Text
 - integerParameterRange_maxValue :: Lens' IntegerParameterRange Text
 
Documentation
data IntegerParameterRange Source #
For a hyperparameter of the integer type, specifies the range that a hyperparameter tuning job searches.
See: newIntegerParameterRange smart constructor.
Constructors
| IntegerParameterRange' | |
Fields 
  | |
Instances
newIntegerParameterRange Source #
Arguments
| :: Text | |
| -> Text | |
| -> Text | |
| -> IntegerParameterRange | 
Create a value of IntegerParameterRange with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:scalingType:IntegerParameterRange', integerParameterRange_scalingType - The scale that hyperparameter tuning uses to search the hyperparameter
 range. For information about choosing a hyperparameter scale, see
 Hyperparameter Scaling.
 One of the following values:
- Auto
 - SageMaker hyperparameter tuning chooses the best scale for the hyperparameter.
 - Linear
 - Hyperparameter tuning searches the values in the hyperparameter range by using a linear scale.
 - Logarithmic
 - Hyperparameter tuning searches the values in the hyperparameter
     range by using a logarithmic scale.
Logarithmic scaling works only for ranges that have only values greater than 0.
 
$sel:name:IntegerParameterRange', integerParameterRange_name - The name of the hyperparameter to search.
$sel:minValue:IntegerParameterRange', integerParameterRange_minValue - The minimum value of the hyperparameter to search.
$sel:maxValue:IntegerParameterRange', integerParameterRange_maxValue - The maximum value of the hyperparameter to search.
integerParameterRange_scalingType :: Lens' IntegerParameterRange (Maybe HyperParameterScalingType) Source #
The scale that hyperparameter tuning uses to search the hyperparameter range. For information about choosing a hyperparameter scale, see Hyperparameter Scaling. One of the following values:
- Auto
 - SageMaker hyperparameter tuning chooses the best scale for the hyperparameter.
 - Linear
 - Hyperparameter tuning searches the values in the hyperparameter range by using a linear scale.
 - Logarithmic
 - Hyperparameter tuning searches the values in the hyperparameter
     range by using a logarithmic scale.
Logarithmic scaling works only for ranges that have only values greater than 0.
 
integerParameterRange_name :: Lens' IntegerParameterRange Text Source #
The name of the hyperparameter to search.
integerParameterRange_minValue :: Lens' IntegerParameterRange Text Source #
The minimum value of the hyperparameter to search.
integerParameterRange_maxValue :: Lens' IntegerParameterRange Text Source #
The maximum value of the hyperparameter to search.