File tree 1 file changed +6
-3
lines changed
google/cloud/aiplatform/matching_engine/_protos
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -54,12 +54,15 @@ message MatchRequest {
54
54
// config is used; if set, this value must be > 0.
55
55
int32 approx_num_neighbors = 6 ;
56
56
57
+ // TO BE DEPRECATED. Use [fraction_leaf_nodes_to_search_override] instead.
58
+ int32 leaf_nodes_to_search_percent_override = 7 ;
59
+
57
60
// The fraction of the number of leaves to search, set at query time allows
58
61
// user to tune search performance. This value increase result in both search
59
62
// accuracy and latency increase. The value should be between 0.0 and 1.0. If
60
63
// not set or set to 0.0, query uses the default value specified in
61
- // NearestNeighborSearchConfig.TreeAHConfig.leaf_nodes_to_search_percent .
62
- int32 leaf_nodes_to_search_percent_override = 7 ;
64
+ // NearestNeighborSearchConfig.TreeAHConfig.fraction_leaf_nodes_to_search .
65
+ double fraction_leaf_nodes_to_search_override = 9 ;
63
66
64
67
// If set to true, besides the doc id, query result will also include the
65
68
// embedding. Set this value may impact the query performance (e.g, increase
@@ -182,4 +185,4 @@ message Namespace {
182
185
// query will match datapoints that are red or blue, but if those points are
183
186
// also purple, then they will be excluded even if they are red/blue.
184
187
repeated string deny_tokens = 3 ;
185
- }
188
+ }
You can’t perform that action at this time.
0 commit comments