diff --git a/tests/python_client/deploy/scripts/first_recall_test.py b/tests/python_client/deploy/scripts/first_recall_test.py index 676ad39ba9..175572950b 100644 --- a/tests/python_client/deploy/scripts/first_recall_test.py +++ b/tests/python_client/deploy/scripts/first_recall_test.py @@ -16,9 +16,8 @@ from pymilvus import ( pymilvus_version = pymilvus.__version__ -all_index_types = ["IVF_FLAT", "IVF_SQ8", "IVF_PQ", "HNSW", "ANNOY"] -default_index_params = [{"nlist": 128}, {"nlist": 128}, {"nlist": 128, "m": 16, "nbits": 8}, - {"M": 48, "efConstruction": 100}, {"n_trees": 50}] +all_index_types = ["IVF_FLAT", "IVF_SQ8", "HNSW"] +default_index_params = [{"nlist": 128}, {"nlist": 128}, {"M": 48, "efConstruction": 100}] index_params_map = dict(zip(all_index_types, default_index_params)) diff --git a/tests/python_client/deploy/scripts/second_recall_test.py b/tests/python_client/deploy/scripts/second_recall_test.py index 85d0f6af2a..305e859aa7 100644 --- a/tests/python_client/deploy/scripts/second_recall_test.py +++ b/tests/python_client/deploy/scripts/second_recall_test.py @@ -8,7 +8,7 @@ from loguru import logger from pymilvus import connections, Collection -all_index_types = ["IVF_FLAT", "IVF_SQ8", "IVF_PQ", "HNSW", "ANNOY"] +all_index_types = ["IVF_FLAT", "IVF_SQ8", "HNSW"] def read_benchmark_hdf5(file_path):