Class: Aws::SageMaker::Types::TrialComponentParameterValue
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::TrialComponentParameterValue
- Defined in:
- gems/aws-sdk-sagemaker/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.
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.
47020 47021 47022 47023 47024 47025 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 47020 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.
47020 47021 47022 47023 47024 47025 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 47020 class TrialComponentParameterValue < Struct.new( :string_value, :number_value) SENSITIVE = [] include Aws::Structure end |