From 836b862dd704ea9973dbe9d59e452d94df600706 Mon Sep 17 00:00:00 2001 From: zhuwenxing Date: Mon, 15 May 2023 22:17:23 +0800 Subject: [PATCH] [test]Add index params for bin_flat (#24122) Signed-off-by: zhuwenxing --- tests/python_client/deploy/scripts/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/python_client/deploy/scripts/utils.py b/tests/python_client/deploy/scripts/utils.py index a3be9f188f..92389914e1 100644 --- a/tests/python_client/deploy/scripts/utils.py +++ b/tests/python_client/deploy/scripts/utils.py @@ -19,7 +19,7 @@ pymilvus_version = pymilvus.__version__ all_index_types = ["FLAT", "IVF_FLAT", "IVF_SQ8", "IVF_PQ", "HNSW", "BIN_FLAT"] default_index_params = [{}, {"nlist": 128}, {"nlist": 128}, {"nlist": 128, "m": 16, "nbits": 8}, - {"M": 48, "efConstruction": 500}] + {"M": 48, "efConstruction": 500}, {}] index_params_map = dict(zip(all_index_types, default_index_params))