Class: Aws::SageMaker::Types::CategoricalParameterRangeSpecification
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::CategoricalParameterRangeSpecification
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
Note:
When making an API call, you may pass CategoricalParameterRangeSpecification data as a hash:
{
values: ["ParameterValue"], # required
}
Defines the possible values for a categorical hyperparameter.
Instance Attribute Summary collapse
-
#values ⇒ Array<String>
The allowed categories for the hyperparameter.
Instance Attribute Details
#values ⇒ Array<String>
The allowed categories for the hyperparameter.
1358 1359 1360 1361 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 1358 class CategoricalParameterRangeSpecification < Struct.new( :values) include Aws::Structure end |