We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5b1cf7 commit d5e088dCopy full SHA for d5e088d
docling_eval/evaluators/markdown_text_evaluator.py
@@ -194,9 +194,11 @@ def __call__(
194
"meteor": [],
195
}
196
197
- futures: list[Future] = []
198
with ProcessPoolExecutor(max_workers=self._concurrency) as executor:
+ futures: list[Future] = []
199
+
200
# Submit the evaluation tasks
201
+ _log.info("Submitting the documents for evaluation...")
202
for data in ds_selection:
203
data_record = DatasetRecordWithPrediction.model_validate(data)
204
doc_id = data_record.doc_id
@@ -238,6 +240,7 @@ def __call__(
238
240
)
239
241
242
# Collect the futures
243
+ _log.info("Collecting the documents for evaluations...")
244
for i, future in tqdm(
245
enumerate(as_completed(futures)),
246
desc="Markdown text evaluations",
0 commit comments