mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-07 19:31:51 +08:00
fix: Change ranges of HNSW parameters according to Knowhere (#28875)
fix: https://github.com/milvus-io/milvus/issues/28860 Signed-off-by: yhmo <yihua.mo@zilliz.com>
This commit is contained in:
parent
89b965e2b1
commit
ad1daebc8e
@ -20,10 +20,10 @@ const (
|
||||
// DefaultMaxDim is the largest dimension supported in Milvus
|
||||
DefaultMaxDim = 32768
|
||||
|
||||
HNSWMinEfConstruction = 8
|
||||
HNSWMaxEfConstruction = 512
|
||||
HNSWMinM = 4
|
||||
HNSWMaxM = 64
|
||||
HNSWMinEfConstruction = 1
|
||||
HNSWMaxEfConstruction = 2147483647
|
||||
HNSWMinM = 1
|
||||
HNSWMaxM = 2048
|
||||
|
||||
// DIM is a constant used to represent dimension
|
||||
DIM = common.DimKey
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user