| 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.HyperParameterSpecification
Description
Synopsis
- data HyperParameterSpecification = HyperParameterSpecification' {
- defaultValue :: Maybe Text
- description :: Maybe Text
- isRequired :: Maybe Bool
- isTunable :: Maybe Bool
- range :: Maybe ParameterRange
- name :: Text
- type' :: ParameterType
- newHyperParameterSpecification :: Text -> ParameterType -> HyperParameterSpecification
- hyperParameterSpecification_defaultValue :: Lens' HyperParameterSpecification (Maybe Text)
- hyperParameterSpecification_description :: Lens' HyperParameterSpecification (Maybe Text)
- hyperParameterSpecification_isRequired :: Lens' HyperParameterSpecification (Maybe Bool)
- hyperParameterSpecification_isTunable :: Lens' HyperParameterSpecification (Maybe Bool)
- hyperParameterSpecification_range :: Lens' HyperParameterSpecification (Maybe ParameterRange)
- hyperParameterSpecification_name :: Lens' HyperParameterSpecification Text
- hyperParameterSpecification_type :: Lens' HyperParameterSpecification ParameterType
Documentation
data HyperParameterSpecification Source #
Defines a hyperparameter to be used by an algorithm.
See: newHyperParameterSpecification smart constructor.
Constructors
| HyperParameterSpecification' | |
Fields
| |
Instances
newHyperParameterSpecification Source #
Arguments
| :: Text | |
| -> ParameterType | |
| -> HyperParameterSpecification |
Create a value of HyperParameterSpecification 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:defaultValue:HyperParameterSpecification', hyperParameterSpecification_defaultValue - The default value for this hyperparameter. If a default value is
specified, a hyperparameter cannot be required.
$sel:description:HyperParameterSpecification', hyperParameterSpecification_description - A brief description of the hyperparameter.
$sel:isRequired:HyperParameterSpecification', hyperParameterSpecification_isRequired - Indicates whether this hyperparameter is required.
$sel:isTunable:HyperParameterSpecification', hyperParameterSpecification_isTunable - Indicates whether this hyperparameter is tunable in a hyperparameter
tuning job.
$sel:range:HyperParameterSpecification', hyperParameterSpecification_range - The allowed range for this hyperparameter.
$sel:name:HyperParameterSpecification', hyperParameterSpecification_name - The name of this hyperparameter. The name must be unique.
$sel:type':HyperParameterSpecification', hyperParameterSpecification_type - The type of this hyperparameter. The valid types are Integer,
Continuous, Categorical, and FreeText.
hyperParameterSpecification_defaultValue :: Lens' HyperParameterSpecification (Maybe Text) Source #
The default value for this hyperparameter. If a default value is specified, a hyperparameter cannot be required.
hyperParameterSpecification_description :: Lens' HyperParameterSpecification (Maybe Text) Source #
A brief description of the hyperparameter.
hyperParameterSpecification_isRequired :: Lens' HyperParameterSpecification (Maybe Bool) Source #
Indicates whether this hyperparameter is required.
hyperParameterSpecification_isTunable :: Lens' HyperParameterSpecification (Maybe Bool) Source #
Indicates whether this hyperparameter is tunable in a hyperparameter tuning job.
hyperParameterSpecification_range :: Lens' HyperParameterSpecification (Maybe ParameterRange) Source #
The allowed range for this hyperparameter.
hyperParameterSpecification_name :: Lens' HyperParameterSpecification Text Source #
The name of this hyperparameter. The name must be unique.
hyperParameterSpecification_type :: Lens' HyperParameterSpecification ParameterType Source #
The type of this hyperparameter. The valid types are Integer,
Continuous, Categorical, and FreeText.