Cai Yudong
Cai Yudong
similar check has been made before searching https://github.com/milvus-io/milvus/pull/20838
For real index (such as: HNSW), we also have checked the param validation before creating index ``` func (c *binaryVectorBaseChecker) CheckTrain(params map[string]string) error func (c *floatVectorBaseChecker) CheckTrain(params map[string]string) error ```...
As a conclusion, we have already checked the param validation: 1. before creating real index 2. before searching For this case, creating "FLAT" index will not create a real index,...
Plan to support bf16 and fp16 in middle of May
Hi @lentitude2tk , This issue is caused by float data type accuracy. The float data type can only retain up to six significant digits, therefore it is not possible to...
> @cydrain I probably understand that this is caused by C++'s precision problem with floating point numbers. But the problem caused by this is that when using searchIterator in pymilvus...