Browse Source

fix es exception (#298)

### What problem does this PR solve?

Issue link:#295
### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
tags/v0.1.0
KevinHuSh 1 year ago
parent
commit
24c15daaed
No account linked to committer's email address
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      rag/nlp/__init__.py

+ 3
- 3
rag/nlp/__init__.py View File

@@ -135,9 +135,9 @@ def add_positions(d, poss):
d["position_int"] = []
d["top_int"] = []
for pn, left, right, top, bottom in poss:
d["page_num_int"].append(pn + 1)
d["top_int"].append(top)
d["position_int"].append((pn + 1, left, right, top, bottom))
d["page_num_int"].append(int(pn + 1))
d["top_int"].append(int(top))
d["position_int"].append((int(pn + 1), int(left), int(right), int(top), int(bottom)))
def remove_contents_table(sections, eng=False):

Loading…
Cancel
Save