"sgl-kernel/git@developer.sourcefind.cn:change/sglang.git" did not exist on "935cda944b82d4828e9efb6606cd449afa4cd71c"
Commit cd78980c authored by myhloli's avatar myhloli
Browse files

refactor: update comments in block_pre_proc.py for clarity and accuracy

parent 20bfa58b
...@@ -90,8 +90,8 @@ def prepare_block_bboxes( ...@@ -90,8 +90,8 @@ def prepare_block_bboxes(
"""经过以上处理后,还存在大框套小框的情况,则删除小框""" """经过以上处理后,还存在大框套小框的情况,则删除小框"""
all_bboxes = remove_overlaps_min_blocks(all_bboxes) all_bboxes = remove_overlaps_min_blocks(all_bboxes)
all_discarded_blocks = remove_overlaps_min_blocks(all_discarded_blocks) all_discarded_blocks = remove_overlaps_min_blocks(all_discarded_blocks)
"""将剩余的bbox做分离处理,防止后面分layout时出错"""
# all_bboxes, drop_reasons = remove_overlap_between_bbox_for_block(all_bboxes) """粗排序后返回"""
all_bboxes.sort(key=lambda x: x[0]+x[1]) all_bboxes.sort(key=lambda x: x[0]+x[1])
return all_bboxes, all_discarded_blocks, footnote_blocks return all_bboxes, all_discarded_blocks, footnote_blocks
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment