File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 55
66import numpy as np
77from loguru import logger
8- from tqdm import tqdm
98
109from qdrant_client import grpc
1110from qdrant_client .conversions import common_types as types
@@ -1104,11 +1103,11 @@ def _upload_collection(
11041103
11051104 if parallel == 1 :
11061105 updater = self ._updater_class .start (** updater_kwargs )
1107- for _ in tqdm ( updater .process (batches_iterator ) ):
1106+ for _ in updater .process (batches_iterator ):
11081107 pass
11091108 else :
11101109 pool = ParallelWorkerPool (parallel , self ._updater_class , start_method = start_method )
1111- for _ in tqdm ( pool .unordered_map (batches_iterator , ** updater_kwargs ) ):
1110+ for _ in pool .unordered_map (batches_iterator , ** updater_kwargs ):
11121111 pass
11131112
11141113 def upload_records (
You can’t perform that action at this time.
0 commit comments