Class: Aws::SageMaker::Types::TrialComponentParameterValue
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::TrialComponentParameterValue
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
The value of a hyperparameter. Only one of ‘NumberValue` or `StringValue` can be specified.
This object is specified in the [CreateTrialComponent] request.
[1]: docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateTrialComponent.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#number_value ⇒ Float
The numeric value of a numeric hyperparameter.
-
#string_value ⇒ String
The string value of a categorical hyperparameter.
Instance Attribute Details
#number_value ⇒ Float
The numeric value of a numeric hyperparameter. If you specify a value for this parameter, you can’t specify the ‘StringValue` parameter.
44584 44585 44586 44587 44588 44589 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 44584 class TrialComponentParameterValue < Struct.new( :string_value, :number_value) SENSITIVE = [] include Aws::Structure end |
#string_value ⇒ String
The string value of a categorical hyperparameter. If you specify a value for this parameter, you can’t specify the ‘NumberValue` parameter.
44584 44585 44586 44587 44588 44589 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 44584 class TrialComponentParameterValue < Struct.new( :string_value, :number_value) SENSITIVE = [] include Aws::Structure end |