Class: Aws::SageMaker::Types::CollectionConfiguration

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#collection_nameString

The name of the tensor collection.

Returns:

  • (String)


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_parametersHash<String,String>

Parameter values for the tensor collection. The allowed parameters are ‘“name”`, `“include_regex”`, `“reduction_config”`, `“save_config”`, `“tensor_names”`, and `“save_histogram”`.

Returns:

  • (Hash<String,String>)


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