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
Note:
When making an API call, you may pass TrialComponentParameterValue data as a hash:
{
string_value: "StringParameterValue",
number_value: 1.0,
}
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.
38582 38583 38584 38585 38586 38587 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 38582 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.
38582 38583 38584 38585 38586 38587 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 38582 class TrialComponentParameterValue < Struct.new( :string_value, :number_value) SENSITIVE = [] include Aws::Structure end |