Class: Aws::SageMaker::Types::AutoParameter

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb

Overview

The name and an example value of the hyperparameter that you want to use in Autotune. If Automatic model tuning (AMT) determines that your hyperparameter is eligible for Autotune, an optimal hyperparameter range is selected for you.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the hyperparameter to optimize using Autotune.

Returns:

  • (String)


3014
3015
3016
3017
3018
3019
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 3014

class AutoParameter < Struct.new(
  :name,
  :value_hint)
  SENSITIVE = []
  include Aws::Structure
end

#value_hintString

An example value of the hyperparameter to optimize using Autotune.

Returns:

  • (String)


3014
3015
3016
3017
3018
3019
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 3014

class AutoParameter < Struct.new(
  :name,
  :value_hint)
  SENSITIVE = []
  include Aws::Structure
end