Class: Aws::SageMaker::Types::ContinuousParameterRange

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

Overview

Note:

When making an API call, you may pass ContinuousParameterRange data as a hash:

{
  name: "ParameterKey", # required
  min_value: "ParameterValue", # required
  max_value: "ParameterValue", # required
}

A list of continuous hyperparameters to tune.

Instance Attribute Summary collapse

Instance Attribute Details

#max_valueString

The maximum value for the hyperparameter. The tuning job uses floating-point values between ‘MinValue` value and this value for tuning.

Returns:

  • (String)


945
946
947
948
949
950
# File 'lib/aws-sdk-sagemaker/types.rb', line 945

class ContinuousParameterRange < Struct.new(
  :name,
  :min_value,
  :max_value)
  include Aws::Structure
end

#min_valueString

The minimum value for the hyperparameter. The tuning job uses floating-point values between this value and ‘MaxValue`for tuning.

Returns:

  • (String)


945
946
947
948
949
950
# File 'lib/aws-sdk-sagemaker/types.rb', line 945

class ContinuousParameterRange < Struct.new(
  :name,
  :min_value,
  :max_value)
  include Aws::Structure
end

#nameString

The name of the continuous hyperparameter to tune.

Returns:

  • (String)


945
946
947
948
949
950
# File 'lib/aws-sdk-sagemaker/types.rb', line 945

class ContinuousParameterRange < Struct.new(
  :name,
  :min_value,
  :max_value)
  include Aws::Structure
end