{-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE DuplicateRecordFields #-} {-# LANGUAGE NamedFieldPuns #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE StrictData #-} {-# LANGUAGE NoImplicitPrelude #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} {-# OPTIONS_GHC -fno-warn-unused-matches #-} -- Derived from AWS service descriptions, licensed under Apache 2.0. -- | -- Module : Amazonka.Personalize.Types.TunedHPOParams -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) module Amazonka.Personalize.Types.TunedHPOParams where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import qualified Amazonka.Prelude as Prelude -- | If hyperparameter optimization (HPO) was performed, contains the -- hyperparameter values of the best performing model. -- -- /See:/ 'newTunedHPOParams' smart constructor. data TunedHPOParams = TunedHPOParams' { -- | A list of the hyperparameter values of the best performing model. algorithmHyperParameters :: Prelude.Maybe (Prelude.HashMap Prelude.Text Prelude.Text) } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'TunedHPOParams' with all optional fields omitted. -- -- Use or to modify other optional fields. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'algorithmHyperParameters', 'tunedHPOParams_algorithmHyperParameters' - A list of the hyperparameter values of the best performing model. newTunedHPOParams :: TunedHPOParams newTunedHPOParams = TunedHPOParams' { algorithmHyperParameters = Prelude.Nothing } -- | A list of the hyperparameter values of the best performing model. tunedHPOParams_algorithmHyperParameters :: Lens.Lens' TunedHPOParams (Prelude.Maybe (Prelude.HashMap Prelude.Text Prelude.Text)) tunedHPOParams_algorithmHyperParameters = Lens.lens (\TunedHPOParams' {algorithmHyperParameters} -> algorithmHyperParameters) (\s@TunedHPOParams' {} a -> s {algorithmHyperParameters = a} :: TunedHPOParams) Prelude.. Lens.mapping Lens.coerced instance Data.FromJSON TunedHPOParams where parseJSON = Data.withObject "TunedHPOParams" ( \x -> TunedHPOParams' Prelude.<$> ( x Data..:? "algorithmHyperParameters" Data..!= Prelude.mempty ) ) instance Prelude.Hashable TunedHPOParams where hashWithSalt _salt TunedHPOParams' {..} = _salt `Prelude.hashWithSalt` algorithmHyperParameters instance Prelude.NFData TunedHPOParams where rnf TunedHPOParams' {..} = Prelude.rnf algorithmHyperParameters