Struct aws_sdk_sagemaker::model::DebugHookConfig [−][src]
#[non_exhaustive]pub struct DebugHookConfig {
pub local_path: Option<String>,
pub s3_output_path: Option<String>,
pub hook_parameters: Option<HashMap<String, String>>,
pub collection_configurations: Option<Vec<CollectionConfiguration>>,
}
Expand description
Configuration information for the Debugger hook parameters, metric and tensor collections, and
storage paths. To learn more about
how to configure the DebugHookConfig
parameter,
see Use the SageMaker and Debugger Configuration API Operations to Create, Update, and Debug Your Training Job.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.local_path: Option<String>
Path to local storage location for metrics and tensors. Defaults to
/opt/ml/output/tensors/
.
s3_output_path: Option<String>
Path to Amazon S3 storage location for metrics and tensors.
hook_parameters: Option<HashMap<String, String>>
Configuration information for the Debugger hook parameters.
collection_configurations: Option<Vec<CollectionConfiguration>>
Configuration information for Debugger tensor collections. To learn more about
how to configure the CollectionConfiguration
parameter,
see Use the SageMaker and Debugger Configuration API Operations to Create, Update, and Debug Your Training Job.
Implementations
Path to local storage location for metrics and tensors. Defaults to
/opt/ml/output/tensors/
.
Path to Amazon S3 storage location for metrics and tensors.
Configuration information for the Debugger hook parameters.
Configuration information for Debugger tensor collections. To learn more about
how to configure the CollectionConfiguration
parameter,
see Use the SageMaker and Debugger Configuration API Operations to Create, Update, and Debug Your Training Job.
Creates a new builder-style object to manufacture DebugHookConfig
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for DebugHookConfig
impl Send for DebugHookConfig
impl Sync for DebugHookConfig
impl Unpin for DebugHookConfig
impl UnwindSafe for DebugHookConfig
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more