Class: Aws::SageMaker::Types::LabelingJobAlgorithmsConfig
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SageMaker::Types::LabelingJobAlgorithmsConfig
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sagemaker/types.rb
 
Overview
Provides configuration information for auto-labeling of your data objects. A ‘LabelingJobAlgorithmsConfig` object must be supplied in order to use auto-labeling.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #initial_active_learning_model_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
At the end of an auto-label job Ground Truth sends the Amazon Resource Name (ARN) of the final model used for auto-labeling.
 - 
  
    
      #labeling_job_algorithm_specification_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies the Amazon Resource Name (ARN) of the algorithm used for auto-labeling.
 - 
  
    
      #labeling_job_resource_config  ⇒ Types::LabelingJobResourceConfig 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Provides configuration information for a labeling job.
 
Instance Attribute Details
#initial_active_learning_model_arn ⇒ String
At the end of an auto-label job Ground Truth sends the Amazon Resource Name (ARN) of the final model used for auto-labeling. You can use this model as the starting point for subsequent similar jobs by providing the ARN of the model here.
      26713 26714 26715 26716 26717 26718 26719  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 26713 class LabelingJobAlgorithmsConfig < Struct.new( :labeling_job_algorithm_specification_arn, :initial_active_learning_model_arn, :labeling_job_resource_config) SENSITIVE = [] include Aws::Structure end  | 
  
#labeling_job_algorithm_specification_arn ⇒ String
Specifies the Amazon Resource Name (ARN) of the algorithm used for auto-labeling. You must select one of the following ARNs:
- 
*Image classification*
‘arn:aws:sagemaker:region:027400017018:labeling-job-algorithm-specification/image-classification`
 - 
*Text classification*
‘arn:aws:sagemaker:region:027400017018:labeling-job-algorithm-specification/text-classification`
 - 
*Object detection*
‘arn:aws:sagemaker:region:027400017018:labeling-job-algorithm-specification/object-detection`
 - 
*Semantic Segmentation*
‘arn:aws:sagemaker:region:027400017018:labeling-job-algorithm-specification/semantic-segmentation`
 
      26713 26714 26715 26716 26717 26718 26719  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 26713 class LabelingJobAlgorithmsConfig < Struct.new( :labeling_job_algorithm_specification_arn, :initial_active_learning_model_arn, :labeling_job_resource_config) SENSITIVE = [] include Aws::Structure end  | 
  
#labeling_job_resource_config ⇒ Types::LabelingJobResourceConfig
Provides configuration information for a labeling job.
      26713 26714 26715 26716 26717 26718 26719  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 26713 class LabelingJobAlgorithmsConfig < Struct.new( :labeling_job_algorithm_specification_arn, :initial_active_learning_model_arn, :labeling_job_resource_config) SENSITIVE = [] include Aws::Structure end  |