Class: Aws::SageMaker::Types::LabelingJobStoppingConditions
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::LabelingJobStoppingConditions
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
Note:
When making an API call, you may pass LabelingJobStoppingConditions data as a hash:
{
max_human_labeled_object_count: 1,
max_percentage_of_input_dataset_labeled: 1,
}
A set of conditions for stopping a labeling job. If any of the conditions are met, the job is automatically stopped. You can use these conditions to control the cost of data labeling.
<note markdown=“1”> Labeling jobs fail after 30 days with an appropriate client error message.
</note>
Instance Attribute Summary collapse
-
#max_human_labeled_object_count ⇒ Integer
The maximum number of objects that can be labeled by human workers.
-
#max_percentage_of_input_dataset_labeled ⇒ Integer
The maximum number of input data objects that should be labeled.
Instance Attribute Details
#max_human_labeled_object_count ⇒ Integer
The maximum number of objects that can be labeled by human workers.
11608 11609 11610 11611 11612 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 11608 class LabelingJobStoppingConditions < Struct.new( :max_human_labeled_object_count, :max_percentage_of_input_dataset_labeled) include Aws::Structure end |
#max_percentage_of_input_dataset_labeled ⇒ Integer
The maximum number of input data objects that should be labeled.
11608 11609 11610 11611 11612 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 11608 class LabelingJobStoppingConditions < Struct.new( :max_human_labeled_object_count, :max_percentage_of_input_dataset_labeled) include Aws::Structure end |