Class: Aws::SageMaker::Types::CategoricalParameterRange
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::CategoricalParameterRange
- 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
-
#name ⇒ String
The name of the categorical hyperparameter to tune.
-
#values ⇒ Array<String>
A list of the categories for the hyperparameter.
Instance Attribute Details
#name ⇒ String
The name of the categorical hyperparameter to tune.
1337 1338 1339 1340 1341 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 1337 class CategoricalParameterRange < Struct.new( :name, :values) include Aws::Structure end |
#values ⇒ Array<String>
A list of the categories for the hyperparameter.
1337 1338 1339 1340 1341 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 1337 class CategoricalParameterRange < Struct.new( :name, :values) include Aws::Structure end |