Skip to content

Commit 612d114

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

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

docling_eval/evaluators/table_evaluator.py

Lines changed: 2 additions & 3 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
279-
desc="Table evaluations - collect loop",
278+
desc="Table evaluations",
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)