Class: Aws::SageMaker::Types::DebugHookConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::DebugHookConfig
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
Note:
When making an API call, you may pass DebugHookConfig data as a hash:
{
local_path: "DirectoryPath",
s3_output_path: "S3Uri", # required
hook_parameters: {
"ConfigKey" => "ConfigValue",
},
collection_configurations: [
{
collection_name: "CollectionName",
collection_parameters: {
"ConfigKey" => "ConfigValue",
},
},
],
}
Configuration information for the debug hook parameters, collection configuration, and storage paths.
Instance Attribute Summary collapse
-
#collection_configurations ⇒ Array<Types::CollectionConfiguration>
Configuration information for tensor collections.
-
#hook_parameters ⇒ Hash<String,String>
Configuration information for the debug hook parameters.
-
#local_path ⇒ String
Path to local storage location for tensors.
-
#s3_output_path ⇒ String
Path to Amazon S3 storage location for tensors.
Instance Attribute Details
#collection_configurations ⇒ Array<Types::CollectionConfiguration>
Configuration information for tensor collections.
5483 5484 5485 5486 5487 5488 5489 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 5483 class DebugHookConfig < Struct.new( :local_path, :s3_output_path, :hook_parameters, :collection_configurations) include Aws::Structure end |
#hook_parameters ⇒ Hash<String,String>
Configuration information for the debug hook parameters.
5483 5484 5485 5486 5487 5488 5489 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 5483 class DebugHookConfig < Struct.new( :local_path, :s3_output_path, :hook_parameters, :collection_configurations) include Aws::Structure end |
#local_path ⇒ String
Path to local storage location for tensors. Defaults to ‘/opt/ml/output/tensors/`.
5483 5484 5485 5486 5487 5488 5489 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 5483 class DebugHookConfig < Struct.new( :local_path, :s3_output_path, :hook_parameters, :collection_configurations) include Aws::Structure end |
#s3_output_path ⇒ String
Path to Amazon S3 storage location for tensors.
5483 5484 5485 5486 5487 5488 5489 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 5483 class DebugHookConfig < Struct.new( :local_path, :s3_output_path, :hook_parameters, :collection_configurations) include Aws::Structure end |