You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::SageMaker::Types::ParameterRange

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing ParameterRange as input to an Aws::Client method, you can use a vanilla Hash:

{
  integer_parameter_range_specification: {
    min_value: "ParameterValue", # required
    max_value: "ParameterValue", # required
  },
  continuous_parameter_range_specification: {
    min_value: "ParameterValue", # required
    max_value: "ParameterValue", # required
  },
  categorical_parameter_range_specification: {
    values: ["ParameterValue"], # required
  },
}

Defines the possible values for categorical, continuous, and integer hyperparameters to be used by an algorithm.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#categorical_parameter_range_specificationTypes::CategoricalParameterRangeSpecification

A CategoricalParameterRangeSpecification object that defines the possible values for a categorical hyperparameter.

Returns:

#continuous_parameter_range_specificationTypes::ContinuousParameterRangeSpecification

A ContinuousParameterRangeSpecification object that defines the possible values for a continuous hyperparameter.

Returns:

#integer_parameter_range_specificationTypes::IntegerParameterRangeSpecification

A IntegerParameterRangeSpecification object that defines the possible values for an integer hyperparameter.

Returns: