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 5
5
6
6
import numpy as np
7
7
from loguru import logger
8
- from tqdm import tqdm
9
8
10
9
from qdrant_client import grpc
11
10
from qdrant_client .conversions import common_types as types
@@ -1104,11 +1103,11 @@ def _upload_collection(
1104
1103
1105
1104
if parallel == 1 :
1106
1105
updater = self ._updater_class .start (** updater_kwargs )
1107
- for _ in tqdm ( updater .process (batches_iterator ) ):
1106
+ for _ in updater .process (batches_iterator ):
1108
1107
pass
1109
1108
else :
1110
1109
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 ):
1112
1111
pass
1113
1112
1114
1113
def upload_records (
You can’t perform that action at this time.
0 commit comments