We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1cbcd03 commit e3997a8Copy full SHA for e3997a8
docling_eval/evaluators/table_evaluator.py
@@ -32,7 +32,7 @@ class TableEvaluation(UnitEvaluation):
32
table_id: int = -1
33
TEDS: float
34
is_complex: bool = False
35
- is_structure_only: bool = False
+ structure_only_evaluation: bool = False
36
37
true_ncols: int = -1
38
pred_ncols: int = -1
@@ -298,7 +298,7 @@ def _evaluate_tables_in_documents(
298
pred_ncols=pred_table.data.num_cols,
299
true_nrows=true_table.data.num_rows,
300
pred_nrows=pred_table.data.num_rows,
301
- is_structure_only=structure_only,
+ structure_only_evaluation=structure_only,
302
)
303
table_evaluations.append(table_evaluation)
304
except Exception:
0 commit comments