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

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

Overview

A list of categorical hyperparameters to tune.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the categorical hyperparameter to tune.

Returns:

  • (String)


3336
3337
3338
3339
3340
3341
# File 'lib/aws-sdk-sagemaker/types.rb', line 3336

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

#valuesArray<String>

A list of the categories for the hyperparameter.

Returns:

  • (Array<String>)


3336
3337
3338
3339
3340
3341
# File 'lib/aws-sdk-sagemaker/types.rb', line 3336

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