Class: Aws::Personalize::Types::CategoricalHyperParameterRange

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

Overview

Provides the name and range of a categorical hyperparameter.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the hyperparameter.

Returns:

  • (String)


777
778
779
780
781
782
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 777

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

#valuesArray<String>

A list of the categories for the hyperparameter.

Returns:

  • (Array<String>)


777
778
779
780
781
782
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 777

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