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
Note:
When making an API call, you may pass CollectionConfiguration data as a hash:
{
collection_name: "CollectionName",
collection_parameters: {
"ConfigKey" => "ConfigValue",
},
}
Configuration information for tensor collections.
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.
1656 1657 1658 1659 1660 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 1656 class CollectionConfiguration < Struct.new( :collection_name, :collection_parameters) 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”`.
1656 1657 1658 1659 1660 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 1656 class CollectionConfiguration < Struct.new( :collection_name, :collection_parameters) include Aws::Structure end |