amazonka-personalize-2.0: Amazon Personalize SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.Personalize.Types.DefaultContinuousHyperParameterRange

Description

 
Synopsis

Documentation

data DefaultContinuousHyperParameterRange Source #

Provides the name and default range of a continuous hyperparameter and whether the hyperparameter is tunable. A tunable hyperparameter can have its value determined during hyperparameter optimization (HPO).

See: newDefaultContinuousHyperParameterRange smart constructor.

Constructors

DefaultContinuousHyperParameterRange' 

Fields

Instances

Instances details
FromJSON DefaultContinuousHyperParameterRange Source # 
Instance details

Defined in Amazonka.Personalize.Types.DefaultContinuousHyperParameterRange

Generic DefaultContinuousHyperParameterRange Source # 
Instance details

Defined in Amazonka.Personalize.Types.DefaultContinuousHyperParameterRange

Read DefaultContinuousHyperParameterRange Source # 
Instance details

Defined in Amazonka.Personalize.Types.DefaultContinuousHyperParameterRange

Show DefaultContinuousHyperParameterRange Source # 
Instance details

Defined in Amazonka.Personalize.Types.DefaultContinuousHyperParameterRange

NFData DefaultContinuousHyperParameterRange Source # 
Instance details

Defined in Amazonka.Personalize.Types.DefaultContinuousHyperParameterRange

Eq DefaultContinuousHyperParameterRange Source # 
Instance details

Defined in Amazonka.Personalize.Types.DefaultContinuousHyperParameterRange

Hashable DefaultContinuousHyperParameterRange Source # 
Instance details

Defined in Amazonka.Personalize.Types.DefaultContinuousHyperParameterRange

type Rep DefaultContinuousHyperParameterRange Source # 
Instance details

Defined in Amazonka.Personalize.Types.DefaultContinuousHyperParameterRange

type Rep DefaultContinuousHyperParameterRange = D1 ('MetaData "DefaultContinuousHyperParameterRange" "Amazonka.Personalize.Types.DefaultContinuousHyperParameterRange" "amazonka-personalize-2.0-9kdbGNMxU7zEIoXPqEwwTg" 'False) (C1 ('MetaCons "DefaultContinuousHyperParameterRange'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "isTunable") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "maxValue") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Double))) :*: (S1 ('MetaSel ('Just "minValue") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Double)) :*: S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))

newDefaultContinuousHyperParameterRange :: DefaultContinuousHyperParameterRange Source #

Create a value of DefaultContinuousHyperParameterRange 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:isTunable:DefaultContinuousHyperParameterRange', defaultContinuousHyperParameterRange_isTunable - Whether the hyperparameter is tunable.

$sel:maxValue:DefaultContinuousHyperParameterRange', defaultContinuousHyperParameterRange_maxValue - The maximum allowable value for the hyperparameter.

$sel:minValue:DefaultContinuousHyperParameterRange', defaultContinuousHyperParameterRange_minValue - The minimum allowable value for the hyperparameter.

$sel:name:DefaultContinuousHyperParameterRange', defaultContinuousHyperParameterRange_name - The name of the hyperparameter.