Class: Aws::SageMaker::Types::AutoMLJobCompletionCriteria
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::AutoMLJobCompletionCriteria
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
Note:
When making an API call, you may pass AutoMLJobCompletionCriteria data as a hash:
{
max_candidates: 1,
max_runtime_per_training_job_in_seconds: 1,
max_auto_ml_job_runtime_in_seconds: 1,
}
How long a job is allowed to run, or how many candidates a job is allowed to generate.
Instance Attribute Summary collapse
-
#max_auto_ml_job_runtime_in_seconds ⇒ Integer
The maximum time, in seconds, an AutoML job is allowed to wait for a trial to complete.
-
#max_candidates ⇒ Integer
The maximum number of times a training job is allowed to run.
-
#max_runtime_per_training_job_in_seconds ⇒ Integer
The maximum time, in seconds, a job is allowed to run.
Instance Attribute Details
#max_auto_ml_job_runtime_in_seconds ⇒ Integer
The maximum time, in seconds, an AutoML job is allowed to wait for a trial to complete. It must be equal to or greater than MaxRuntimePerTrainingJobInSeconds.
1077 1078 1079 1080 1081 1082 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 1077 class AutoMLJobCompletionCriteria < Struct.new( :max_candidates, :max_runtime_per_training_job_in_seconds, :max_auto_ml_job_runtime_in_seconds) include Aws::Structure end |
#max_candidates ⇒ Integer
The maximum number of times a training job is allowed to run.
1077 1078 1079 1080 1081 1082 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 1077 class AutoMLJobCompletionCriteria < Struct.new( :max_candidates, :max_runtime_per_training_job_in_seconds, :max_auto_ml_job_runtime_in_seconds) include Aws::Structure end |
#max_runtime_per_training_job_in_seconds ⇒ Integer
The maximum time, in seconds, a job is allowed to run.
1077 1078 1079 1080 1081 1082 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 1077 class AutoMLJobCompletionCriteria < Struct.new( :max_candidates, :max_runtime_per_training_job_in_seconds, :max_auto_ml_job_runtime_in_seconds) include Aws::Structure end |