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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-sagemaker/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)


3362
3363
3364
3365
3366
3367
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 3362

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

#valuesArray<String>

A list of the categories for the hyperparameter.

Returns:

  • (Array<String>)


3362
3363
3364
3365
3366
3367
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 3362

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