Class: Google::Cloud::AIPlatform::V1::StudySpec::ParameterSpec::ConditionalParameterSpec
- Inherits:
-
Object
- Object
- Google::Cloud::AIPlatform::V1::StudySpec::ParameterSpec::ConditionalParameterSpec
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/aiplatform/v1/study.rb
Overview
Represents a parameter spec with condition from its parent parameter.
Defined Under Namespace
Classes: CategoricalValueCondition, DiscreteValueCondition, IntValueCondition
Instance Attribute Summary collapse
-
#parameter_spec ⇒ ::Google::Cloud::AIPlatform::V1::StudySpec::ParameterSpec
Required.
-
#parent_categorical_values ⇒ ::Google::Cloud::AIPlatform::V1::StudySpec::ParameterSpec::ConditionalParameterSpec::CategoricalValueCondition
The spec for matching values from a parent parameter of
CATEGORICAL
type. -
#parent_discrete_values ⇒ ::Google::Cloud::AIPlatform::V1::StudySpec::ParameterSpec::ConditionalParameterSpec::DiscreteValueCondition
The spec for matching values from a parent parameter of
DISCRETE
type. -
#parent_int_values ⇒ ::Google::Cloud::AIPlatform::V1::StudySpec::ParameterSpec::ConditionalParameterSpec::IntValueCondition
The spec for matching values from a parent parameter of
INTEGER
type.
Instance Attribute Details
#parameter_spec ⇒ ::Google::Cloud::AIPlatform::V1::StudySpec::ParameterSpec
Returns Required. The spec for a conditional parameter.
427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 |
# File 'proto_docs/google/cloud/aiplatform/v1/study.rb', line 427 class ConditionalParameterSpec include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Represents the spec to match discrete values from parent parameter. # @!attribute [rw] values # @return [::Array<::Float>] # Required. Matches values of the parent parameter of 'DISCRETE' type. # All values must exist in `discrete_value_spec` of parent parameter. # # The Epsilon of the value matching is 1e-10. class DiscreteValueCondition include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Represents the spec to match integer values from parent parameter. # @!attribute [rw] values # @return [::Array<::Integer>] # Required. Matches values of the parent parameter of 'INTEGER' type. # All values must lie in `integer_value_spec` of parent parameter. class IntValueCondition include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Represents the spec to match categorical values from parent parameter. # @!attribute [rw] values # @return [::Array<::String>] # Required. Matches values of the parent parameter of 'CATEGORICAL' # type. All values must exist in `categorical_value_spec` of parent # parameter. class CategoricalValueCondition include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |
#parent_categorical_values ⇒ ::Google::Cloud::AIPlatform::V1::StudySpec::ParameterSpec::ConditionalParameterSpec::CategoricalValueCondition
Returns The spec for matching values from a parent parameter of
CATEGORICAL
type.
427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 |
# File 'proto_docs/google/cloud/aiplatform/v1/study.rb', line 427 class ConditionalParameterSpec include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Represents the spec to match discrete values from parent parameter. # @!attribute [rw] values # @return [::Array<::Float>] # Required. Matches values of the parent parameter of 'DISCRETE' type. # All values must exist in `discrete_value_spec` of parent parameter. # # The Epsilon of the value matching is 1e-10. class DiscreteValueCondition include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Represents the spec to match integer values from parent parameter. # @!attribute [rw] values # @return [::Array<::Integer>] # Required. Matches values of the parent parameter of 'INTEGER' type. # All values must lie in `integer_value_spec` of parent parameter. class IntValueCondition include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Represents the spec to match categorical values from parent parameter. # @!attribute [rw] values # @return [::Array<::String>] # Required. Matches values of the parent parameter of 'CATEGORICAL' # type. All values must exist in `categorical_value_spec` of parent # parameter. class CategoricalValueCondition include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |
#parent_discrete_values ⇒ ::Google::Cloud::AIPlatform::V1::StudySpec::ParameterSpec::ConditionalParameterSpec::DiscreteValueCondition
Returns The spec for matching values from a parent parameter of
DISCRETE
type.
427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 |
# File 'proto_docs/google/cloud/aiplatform/v1/study.rb', line 427 class ConditionalParameterSpec include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Represents the spec to match discrete values from parent parameter. # @!attribute [rw] values # @return [::Array<::Float>] # Required. Matches values of the parent parameter of 'DISCRETE' type. # All values must exist in `discrete_value_spec` of parent parameter. # # The Epsilon of the value matching is 1e-10. class DiscreteValueCondition include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Represents the spec to match integer values from parent parameter. # @!attribute [rw] values # @return [::Array<::Integer>] # Required. Matches values of the parent parameter of 'INTEGER' type. # All values must lie in `integer_value_spec` of parent parameter. class IntValueCondition include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Represents the spec to match categorical values from parent parameter. # @!attribute [rw] values # @return [::Array<::String>] # Required. Matches values of the parent parameter of 'CATEGORICAL' # type. All values must exist in `categorical_value_spec` of parent # parameter. class CategoricalValueCondition include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |
#parent_int_values ⇒ ::Google::Cloud::AIPlatform::V1::StudySpec::ParameterSpec::ConditionalParameterSpec::IntValueCondition
Returns The spec for matching values from a parent parameter of INTEGER
type.
427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 |
# File 'proto_docs/google/cloud/aiplatform/v1/study.rb', line 427 class ConditionalParameterSpec include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Represents the spec to match discrete values from parent parameter. # @!attribute [rw] values # @return [::Array<::Float>] # Required. Matches values of the parent parameter of 'DISCRETE' type. # All values must exist in `discrete_value_spec` of parent parameter. # # The Epsilon of the value matching is 1e-10. class DiscreteValueCondition include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Represents the spec to match integer values from parent parameter. # @!attribute [rw] values # @return [::Array<::Integer>] # Required. Matches values of the parent parameter of 'INTEGER' type. # All values must lie in `integer_value_spec` of parent parameter. class IntValueCondition include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Represents the spec to match categorical values from parent parameter. # @!attribute [rw] values # @return [::Array<::String>] # Required. Matches values of the parent parameter of 'CATEGORICAL' # type. All values must exist in `categorical_value_spec` of parent # parameter. class CategoricalValueCondition include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |