You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: v2.6.x/site/en/userGuide/indexes/gpu/gpu-cagra.md
+4-14Lines changed: 4 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -120,26 +120,17 @@ The following table lists the parameters that can be configured in `params` when
120
120
</tr>
121
121
<tr>
122
122
<td><p><code>build_algo</code></p></td>
123
-
<td><p>Selects the graph generation algorithm before pruning. Possible values:</p>
124
-
<ul>
125
-
<li><p><code>IVF_PQ</code>: Offers higher quality but slower build time.</p></li>
126
-
<li><p><code>NN_DESCENT</code>: Provides a quicker build with potentially lower recall.</p></li>
127
-
</ul></td>
123
+
<td><p>Selects the graph generation algorithm before pruning. Possible values:</p><ul><li><p><code>IVF_PQ</code>: Offers higher quality but slower build time.</p></li><li><p><code>NN_DESCENT</code>: Provides a quicker build with potentially lower recall.</p></li></ul></td>
<td><p>Decides whether to cache the original dataset in GPU memory. Possible values:</p>
133
-
<ul>
134
-
<li><p><code>"true"</code>: Caches the original dataset to enhance recall by refining search results.</p></li>
135
-
<li><p><code>"false"</code>: Does not cache the original dataset to save gpu memory.</p></li>
136
-
</ul></td>
128
+
<td><p>Decides whether to cache the original dataset in GPU memory. Possible values:</p><ul><li><p><code>"true"</code>: Caches the original dataset to enhance recall by refining search results.</p></li><li><p><code>"false"</code>: Does not cache the original dataset to save gpu memory.</p></li></ul></td>
137
129
<td><p><code>"false"</code></p></td>
138
130
</tr>
139
131
<tr>
140
132
<td><p><code>adapt_for_cpu</code></p></td>
141
-
<td><p>Decides whether to use GPU for index-building and CPU for search.
142
-
Setting this parameter to <code>"true"</code> requires the presence of the <code>ef</code> parameter in the search requests.</p></td>
133
+
<td><p>Decides whether to use GPU for index-building and CPU for search.</p><p>Setting this parameter to <code>"true"</code> requires the presence of the <code>ef</code> parameter in the search requests.</p></td>
143
134
<td><p><code>"false"</code></p></td>
144
135
</tr>
145
136
</table>
@@ -176,8 +167,7 @@ The following table lists the parameters that can be configured in `search_param
176
167
</tr>
177
168
<tr>
178
169
<td><p><code>ef</code></p></td>
179
-
<td><p>Specifies the query time/accuracy trade-off. A higher <code>ef</code> value leads to more accurate but slower search.
180
-
This parameter is mandatory if you set <code>adapt_for_cpu</code> to <code>true</code> when you build the index.</p></td>
170
+
<td><p>Specifies the query time/accuracy trade-off. A higher <code>ef</code> value leads to more accurate but slower search.</p><p>This parameter is mandatory if you set <code>adapt_for_cpu</code> to <code>true</code> when you build the index.</p></td>
# reference the struct schema in an Array field with its
179
181
# element type set to `DataType.STRUCT`
@@ -445,6 +447,8 @@ Specifically, you can directly use the names of the vector fields within Struct
445
447
446
448
Milvus provides `EmbeddingList` to help you organize query vectors for searches against an embedding list in an Array of Structs more neatly.
447
449
450
+
However, `EmbeddingList` can used only in `search()` requests without range search or grouping search parameters, let alone `search_iterator()` requests.
0 commit comments