Class: Google::Cloud::VectorSearch::V1::DenseScannIndex
- Inherits:
-
Object
- Object
- Google::Cloud::VectorSearch::V1::DenseScannIndex
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/vectorsearch/v1/vectorsearch_service.rb
Overview
Dense ScaNN index configuration.
Defined Under Namespace
Modules: FeatureNormType
Instance Attribute Summary collapse
Instance Attribute Details
#feature_norm_type ⇒ ::Google::Cloud::VectorSearch::V1::DenseScannIndex::FeatureNormType
Returns Optional. Feature norm type.
704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 |
# File 'proto_docs/google/cloud/vectorsearch/v1/vectorsearch_service.rb', line 704 class DenseScannIndex include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Feature norm type for ScaNN index. module FeatureNormType # Unspecified feature norm type. FEATURE_NORM_TYPE_UNSPECIFIED = 0 # No norm applied. NONE = 1 # Unit L2 norm. UNIT_L2_NORM = 2 end end |