Class: Aws::SageMaker::Types::CollectionConfiguration
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SageMaker::Types::CollectionConfiguration
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sagemaker/types.rb
 
Overview
Configuration information for the Amazon SageMaker Debugger output tensor collections.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #collection_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the tensor collection.
 - 
  
    
      #collection_parameters  ⇒ Hash<String,String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Parameter values for the tensor collection.
 
Instance Attribute Details
#collection_name ⇒ String
The name of the tensor collection. The name must be unique relative to other rule configuration names.
      5011 5012 5013 5014 5015 5016  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 5011 class CollectionConfiguration < Struct.new( :collection_name, :collection_parameters) SENSITIVE = [] include Aws::Structure end  | 
  
#collection_parameters ⇒ Hash<String,String>
Parameter values for the tensor collection. The allowed parameters are ‘“name”`, `“include_regex”`, `“reduction_config”`, `“save_config”`, `“tensor_names”`, and `“save_histogram”`.
      5011 5012 5013 5014 5015 5016  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 5011 class CollectionConfiguration < Struct.new( :collection_name, :collection_parameters) SENSITIVE = [] include Aws::Structure end  |