Class: Google::Cloud::AIPlatform::V1::DynamicRetrievalConfig
- Inherits:
-
Object
- Object
- Google::Cloud::AIPlatform::V1::DynamicRetrievalConfig
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/aiplatform/v1/tool.rb
Overview
Describes the options to customize dynamic retrieval.
Defined Under Namespace
Modules: Mode
Instance Attribute Summary collapse
-
#dynamic_threshold ⇒ ::Float
Optional.
-
#mode ⇒ ::Google::Cloud::AIPlatform::V1::DynamicRetrievalConfig::Mode
The mode of the predictor to be used in dynamic retrieval.
Instance Attribute Details
#dynamic_threshold ⇒ ::Float
548 549 550 551 552 553 554 555 556 557 558 559 560 |
# File 'proto_docs/google/cloud/aiplatform/v1/tool.rb', line 548 class DynamicRetrievalConfig include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The mode of the predictor to be used in dynamic retrieval. module Mode # Always trigger retrieval. MODE_UNSPECIFIED = 0 # Run retrieval only when system decides it is necessary. MODE_DYNAMIC = 1 end end |
#mode ⇒ ::Google::Cloud::AIPlatform::V1::DynamicRetrievalConfig::Mode
548 549 550 551 552 553 554 555 556 557 558 559 560 |
# File 'proto_docs/google/cloud/aiplatform/v1/tool.rb', line 548 class DynamicRetrievalConfig include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The mode of the predictor to be used in dynamic retrieval. module Mode # Always trigger retrieval. MODE_UNSPECIFIED = 0 # Run retrieval only when system decides it is necessary. MODE_DYNAMIC = 1 end end |