Skip to content

Commit c6ec8a9

Browse files
committed
Rename the field to structure_only_evaluation
1 parent bf29960 commit c6ec8a9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docling_eval/evaluators/table_evaluator.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class TableEvaluation(UnitEvaluation):
3232
table_id: int = -1
3333
TEDS: float
3434
is_complex: bool = False
35-
is_structure_only: bool = False
35+
structure_only_evaluation: bool = False
3636

3737
true_ncols: int = -1
3838
pred_ncols: int = -1
@@ -298,7 +298,7 @@ def _evaluate_tables_in_documents(
298298
pred_ncols=pred_table.data.num_cols,
299299
true_nrows=true_table.data.num_rows,
300300
pred_nrows=pred_table.data.num_rows,
301-
is_structure_only=structure_only,
301+
structure_only_evaluation=structure_only,
302302
)
303303
table_evaluations.append(table_evaluation)
304304
except Exception:

0 commit comments

Comments
 (0)