Skip to content

Commit 7859a75

Browse files
fix: Fix loop counter in TableEvaluator
Signed-off-by: Nikos Livathinos <nli@zurich.ibm.com>
1 parent c44eac0 commit 7859a75

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

docling_eval/evaluators/table_evaluator.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -275,10 +275,9 @@ def __call__(
275275
_log.info("Collecting the tables for evaluations...")
276276
for future in tqdm(
277277
as_completed(futures),
278-
# TODO
279278
desc="Table evaluations - collect loop",
280279
ncols=120,
281-
total=len(ds_selection),
280+
total=len(futures),
282281
):
283282
table_evaluation: Optional[TableEvaluation] = future.result()
284283
if table_evaluation is None:

0 commit comments

Comments
 (0)