Class: Aws::SageMaker::Types::CollectionConfiguration
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::SageMaker::Types::CollectionConfiguration
 
- Defined in:
- gems/aws-sdk-sagemaker/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.
| 6115 6116 6117 6118 6119 6120 | # File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 6115 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".
| 6115 6116 6117 6118 6119 6120 | # File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 6115 class CollectionConfiguration < Struct.new( :collection_name, :collection_parameters) SENSITIVE = [] include Aws::Structure end |