You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::SageMaker::Types::DebugHookConfig

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing DebugHookConfig as input to an Aws::Client method, you can use a vanilla 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.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#collection_configurationsArray<Types::CollectionConfiguration>

Configuration information for tensor collections.

Returns:

#hook_parametersHash<String,String>

Configuration information for the debug hook parameters.

Returns:

  • (Hash<String,String>)

    Configuration information for the debug hook parameters.

#local_pathString

Path to local storage location for tensors. Defaults to /opt/ml/output/tensors/.

Returns:

  • (String)

    Path to local storage location for tensors.

#s3_output_pathString

Path to Amazon S3 storage location for tensors.

Returns:

  • (String)

    Path to Amazon S3 storage location for tensors.