Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Synopsis
- data ObjectiveStatusCounters = ObjectiveStatusCounters' {}
- newObjectiveStatusCounters :: ObjectiveStatusCounters
- objectiveStatusCounters_pending :: Lens' ObjectiveStatusCounters (Maybe Natural)
- objectiveStatusCounters_succeeded :: Lens' ObjectiveStatusCounters (Maybe Natural)
- objectiveStatusCounters_failed :: Lens' ObjectiveStatusCounters (Maybe Natural)
Documentation
data ObjectiveStatusCounters Source #
Specifies the number of training jobs that this hyperparameter tuning job launched, categorized by the status of their objective metric. The objective metric status shows whether the final objective metric for the training job has been evaluated by the tuning job and used in the hyperparameter tuning process.
See: newObjectiveStatusCounters
smart constructor.
ObjectiveStatusCounters' | |
|
Instances
newObjectiveStatusCounters :: ObjectiveStatusCounters Source #
Create a value of ObjectiveStatusCounters
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:pending:ObjectiveStatusCounters'
, objectiveStatusCounters_pending
- The number of training jobs that are in progress and pending evaluation
of their final objective metric.
$sel:succeeded:ObjectiveStatusCounters'
, objectiveStatusCounters_succeeded
- The number of training jobs whose final objective metric was evaluated
by the hyperparameter tuning job and used in the hyperparameter tuning
process.
$sel:failed:ObjectiveStatusCounters'
, objectiveStatusCounters_failed
- The number of training jobs whose final objective metric was not
evaluated and used in the hyperparameter tuning process. This typically
occurs when the training job failed or did not emit an objective metric.
objectiveStatusCounters_pending :: Lens' ObjectiveStatusCounters (Maybe Natural) Source #
The number of training jobs that are in progress and pending evaluation of their final objective metric.
objectiveStatusCounters_succeeded :: Lens' ObjectiveStatusCounters (Maybe Natural) Source #
The number of training jobs whose final objective metric was evaluated by the hyperparameter tuning job and used in the hyperparameter tuning process.
objectiveStatusCounters_failed :: Lens' ObjectiveStatusCounters (Maybe Natural) Source #
The number of training jobs whose final objective metric was not evaluated and used in the hyperparameter tuning process. This typically occurs when the training job failed or did not emit an objective metric.