remove verbose print

Signed-off-by: Michele Dolfi <dol@zurich.ibm.com>
This commit is contained in:
Michele Dolfi 2025-02-14 15:18:25 +01:00
parent 8ab99f9db7
commit 38838a2998

View File

@ -171,8 +171,8 @@ def verify_table_v2(true_item: TableItem, pred_item: TableItem, fuzzy: bool):
assert true_item.data is not None, "documents are expected to have table data"
assert pred_item.data is not None, "documents are expected to have table data"
print("True: \n", true_item.export_to_dataframe().to_markdown())
print("Pred: \n", true_item.export_to_dataframe().to_markdown())
# print("True: \n", true_item.export_to_dataframe().to_markdown())
# print("Pred: \n", true_item.export_to_dataframe().to_markdown())
for i, row in enumerate(true_item.data.grid):
for j, col in enumerate(true_item.data.grid[i]):