Class: Google::Cloud::AIPlatform::V1::Trial::Parameter
- Inherits:
-
Object
- Object
- Google::Cloud::AIPlatform::V1::Trial::Parameter
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/aiplatform/v1/study.rb
Overview
A message representing a parameter to be tuned.
Instance Attribute Summary collapse
-
#parameter_id ⇒ ::String
readonly
Output only.
-
#value ⇒ ::Google::Protobuf::Value
readonly
Output only.
Instance Attribute Details
#parameter_id ⇒ ::String (readonly)
Returns Output only. The ID of the parameter. The parameter should be defined in [StudySpec's Parameters][google.cloud.aiplatform.v1.StudySpec.parameters].
148 149 150 151 |
# File 'proto_docs/google/cloud/aiplatform/v1/study.rb', line 148 class Parameter include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#value ⇒ ::Google::Protobuf::Value (readonly)
Returns Output only. The value of the parameter.
number_value
will be set if a parameter defined in StudySpec is
in type 'INTEGER', 'DOUBLE' or 'DISCRETE'.
string_value
will be set if a parameter defined in StudySpec is
in type 'CATEGORICAL'.
148 149 150 151 |
# File 'proto_docs/google/cloud/aiplatform/v1/study.rb', line 148 class Parameter include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |