Class: Aws::SageMaker::Types::CategoricalParameterRange

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 CategoricalParameterRange data as a hash:

{
  name: "ParameterKey", # required
  values: ["ParameterValue"], # required
}

A list of categorical hyperparameters to tune.

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the categorical hyperparameter to tune.

Returns:

  • (String)


1337
1338
1339
1340
1341
# File 'lib/aws-sdk-sagemaker/types.rb', line 1337

class CategoricalParameterRange < Struct.new(
  :name,
  :values)
  include Aws::Structure
end

#valuesArray<String>

A list of the categories for the hyperparameter.

Returns:

  • (Array<String>)


1337
1338
1339
1340
1341
# File 'lib/aws-sdk-sagemaker/types.rb', line 1337

class CategoricalParameterRange < Struct.new(
  :name,
  :values)
  include Aws::Structure
end