Interface DebugHookConfig.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DebugHookConfig.Builder,DebugHookConfig>,SdkBuilder<DebugHookConfig.Builder,DebugHookConfig>,SdkPojo
- Enclosing class:
- DebugHookConfig
public static interface DebugHookConfig.Builder extends SdkPojo, CopyableBuilder<DebugHookConfig.Builder,DebugHookConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DebugHookConfig.BuildercollectionConfigurations(Collection<CollectionConfiguration> collectionConfigurations)Configuration information for Amazon SageMaker Debugger tensor collections.DebugHookConfig.BuildercollectionConfigurations(Consumer<CollectionConfiguration.Builder>... collectionConfigurations)Configuration information for Amazon SageMaker Debugger tensor collections.DebugHookConfig.BuildercollectionConfigurations(CollectionConfiguration... collectionConfigurations)Configuration information for Amazon SageMaker Debugger tensor collections.DebugHookConfig.BuilderhookParameters(Map<String,String> hookParameters)Configuration information for the Amazon SageMaker Debugger hook parameters.DebugHookConfig.BuilderlocalPath(String localPath)Path to local storage location for metrics and tensors.DebugHookConfig.Builders3OutputPath(String s3OutputPath)Path to Amazon S3 storage location for metrics and tensors.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
localPath
DebugHookConfig.Builder localPath(String localPath)
Path to local storage location for metrics and tensors. Defaults to
/opt/ml/output/tensors/.- Parameters:
localPath- Path to local storage location for metrics and tensors. Defaults to/opt/ml/output/tensors/.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
s3OutputPath
DebugHookConfig.Builder s3OutputPath(String s3OutputPath)
Path to Amazon S3 storage location for metrics and tensors.
- Parameters:
s3OutputPath- Path to Amazon S3 storage location for metrics and tensors.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
hookParameters
DebugHookConfig.Builder hookParameters(Map<String,String> hookParameters)
Configuration information for the Amazon SageMaker Debugger hook parameters.
- Parameters:
hookParameters- Configuration information for the Amazon SageMaker Debugger hook parameters.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
collectionConfigurations
DebugHookConfig.Builder collectionConfigurations(Collection<CollectionConfiguration> collectionConfigurations)
Configuration information for Amazon SageMaker Debugger tensor collections. To learn more about how to configure the
CollectionConfigurationparameter, see Use the SageMaker and Debugger Configuration API Operations to Create, Update, and Debug Your Training Job.- Parameters:
collectionConfigurations- Configuration information for Amazon SageMaker Debugger tensor collections. To learn more about how to configure theCollectionConfigurationparameter, see Use the SageMaker and Debugger Configuration API Operations to Create, Update, and Debug Your Training Job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
collectionConfigurations
DebugHookConfig.Builder collectionConfigurations(CollectionConfiguration... collectionConfigurations)
Configuration information for Amazon SageMaker Debugger tensor collections. To learn more about how to configure the
CollectionConfigurationparameter, see Use the SageMaker and Debugger Configuration API Operations to Create, Update, and Debug Your Training Job.- Parameters:
collectionConfigurations- Configuration information for Amazon SageMaker Debugger tensor collections. To learn more about how to configure theCollectionConfigurationparameter, see Use the SageMaker and Debugger Configuration API Operations to Create, Update, and Debug Your Training Job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
collectionConfigurations
DebugHookConfig.Builder collectionConfigurations(Consumer<CollectionConfiguration.Builder>... collectionConfigurations)
Configuration information for Amazon SageMaker Debugger tensor collections. To learn more about how to configure the
This is a convenience method that creates an instance of theCollectionConfigurationparameter, see Use the SageMaker and Debugger Configuration API Operations to Create, Update, and Debug Your Training Job.CollectionConfiguration.Builderavoiding the need to create one manually viaCollectionConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#collectionConfigurations(List.) - Parameters:
collectionConfigurations- a consumer that will call methods onCollectionConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#collectionConfigurations(java.util.Collection)
-
-