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
Returns Optional. The threshold to be used in dynamic retrieval. If not set, a system default value is used.
174 175 176 177 178 179 180 181 182 183 184 185 186 |
# File 'proto_docs/google/cloud/aiplatform/v1/tool.rb', line 174 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
Returns The mode of the predictor to be used in dynamic retrieval.
174 175 176 177 178 179 180 181 182 183 184 185 186 |
# File 'proto_docs/google/cloud/aiplatform/v1/tool.rb', line 174 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 |