Class: Aws::SageMaker::Types::AlgorithmValidationSpecification
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SageMaker::Types::AlgorithmValidationSpecification
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sagemaker/types.rb
 
Overview
Specifies configurations for one or more training jobs that SageMaker runs to test the algorithm.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #validation_profiles  ⇒ Array<Types::AlgorithmValidationProfile> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
An array of ‘AlgorithmValidationProfile` objects, each of which specifies a training job and batch transform job that SageMaker runs to validate your algorithm.
 - 
  
    
      #validation_role  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The IAM roles that SageMaker uses to run the training jobs.
 
Instance Attribute Details
#validation_profiles ⇒ Array<Types::AlgorithmValidationProfile>
An array of ‘AlgorithmValidationProfile` objects, each of which specifies a training job and batch transform job that SageMaker runs to validate your algorithm.
      621 622 623 624 625 626  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 621 class AlgorithmValidationSpecification < Struct.new( :validation_role, :validation_profiles) SENSITIVE = [] include Aws::Structure end  | 
  
#validation_role ⇒ String
The IAM roles that SageMaker uses to run the training jobs.
      621 622 623 624 625 626  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 621 class AlgorithmValidationSpecification < Struct.new( :validation_role, :validation_profiles) SENSITIVE = [] include Aws::Structure end  |