MrSimple07 commited on
Commit
359257d
·
1 Parent(s): 5166f44

max rows = 5

Browse files
Files changed (1) hide show
  1. documents_prep.py +1 -1
documents_prep.py CHANGED
@@ -53,7 +53,7 @@ def normalize_doc_id(doc_id):
53
  return doc_id
54
 
55
 
56
- def chunk_table_by_rows(table_data, doc_id, max_rows=2):
57
  headers = table_data.get('headers', [])
58
  rows = table_data.get('data', [])
59
  table_num = table_data.get('table_number', 'unknown')
 
53
  return doc_id
54
 
55
 
56
+ def chunk_table_by_rows(table_data, doc_id, max_rows=5):
57
  headers = table_data.get('headers', [])
58
  rows = table_data.get('data', [])
59
  table_num = table_data.get('table_number', 'unknown')