-
Notifications
You must be signed in to change notification settings - Fork 339
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Filip Haltmayer <[email protected]>
- Loading branch information
Filip Haltmayer
committed
Apr 27, 2023
1 parent
3b06179
commit 8d7c399
Showing
5 changed files
with
1,239 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
"""Default MilvusClient args.""" | ||
|
||
DEFAULT_SEARCH_PARAMS = { | ||
"IVF_FLAT": {"metric_type": "L2", "params": {"nprobe": 10}}, | ||
"IVF_SQ8": {"metric_type": "L2", "params": {"nprobe": 10}}, | ||
"IVF_PQ": {"metric_type": "L2", "params": {"nprobe": 10}}, | ||
"HNSW": {"metric_type": "L2", "params": {"ef": 10}}, | ||
"RHNSW_FLAT": {"metric_type": "L2", "params": {"ef": 10}}, | ||
"RHNSW_SQ": {"metric_type": "L2", "params": {"ef": 10}}, | ||
"RHNSW_PQ": {"metric_type": "L2", "params": {"ef": 10}}, | ||
"AUTOINDEX": {"metric_type": "L2", "params": {}}, | ||
} |
Oops, something went wrong.