We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43d098a commit 1ab46ddCopy full SHA for 1ab46dd
vectordb_bench/backend/clients/pgvector/cli.py
@@ -21,7 +21,7 @@
21
def set_default_quantized_fetch_limit(ctx, param, value):
22
if ctx.params.get("reranking") and value is None:
23
# ef_search is the default value for quantized_fetch_limit as it's bound by ef_search.
24
- # 100 (arbitrary) is default value for quantized_fetch_limit for IVFFlat.
+ # 100 is default value for quantized_fetch_limit for IVFFlat.
25
default_value = ctx.params["ef_search"] if ctx.command.name == "pgvectorhnsw" else 100
26
return default_value
27
return value
0 commit comments