You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

naive.py 4.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. # Licensed under the Apache License, Version 2.0 (the "License");
  2. # you may not use this file except in compliance with the License.
  3. # You may obtain a copy of the License at
  4. #
  5. # http://www.apache.org/licenses/LICENSE-2.0
  6. #
  7. # Unless required by applicable law or agreed to in writing, software
  8. # distributed under the License is distributed on an "AS IS" BASIS,
  9. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. # See the License for the specific language governing permissions and
  11. # limitations under the License.
  12. #
  13. import copy
  14. import re
  15. from rag.app import laws
  16. from rag.nlp import huqie, is_english, tokenize, naive_merge, tokenize_table, add_positions
  17. from deepdoc.parser import PdfParser, ExcelParser
  18. from rag.settings import cron_logger
  19. class Pdf(PdfParser):
  20. def __call__(self, filename, binary=None, from_page=0,
  21. to_page=100000, zoomin=3, callback=None):
  22. callback(msg="OCR is running...")
  23. self.__images__(
  24. filename if not binary else binary,
  25. zoomin,
  26. from_page,
  27. to_page,
  28. callback
  29. )
  30. callback(msg="OCR finished")
  31. from timeit import default_timer as timer
  32. start = timer()
  33. self._layouts_rec(zoomin)
  34. callback(0.63, "Layout analysis finished.")
  35. print("paddle layouts:", timer() - start)
  36. self._table_transformer_job(zoomin)
  37. callback(0.65, "Table analysis finished.")
  38. self._text_merge()
  39. callback(0.67, "Text merging finished")
  40. tbls = self._extract_table_figure(True, zoomin, True, True)
  41. self._naive_vertical_merge()
  42. cron_logger.info("paddle layouts:".format((timer() - start) / (self.total_page + 0.1)))
  43. return [(b["text"], self._line_tag(b, zoomin)) for b in self.boxes], tbls
  44. def chunk(filename, binary=None, from_page=0, to_page=100000, lang="Chinese", callback=None, **kwargs):
  45. """
  46. Supported file formats are docx, pdf, txt.
  47. This method apply the naive ways to chunk files.
  48. Successive text will be sliced into pieces using 'delimiter'.
  49. Next, these successive pieces are merge into chunks whose token number is no more than 'Max token number'.
  50. """
  51. eng = lang.lower() == "english"#is_english(cks)
  52. doc = {
  53. "docnm_kwd": filename,
  54. "title_tks": huqie.qie(re.sub(r"\.[a-zA-Z]+$", "", filename))
  55. }
  56. doc["title_sm_tks"] = huqie.qieqie(doc["title_tks"])
  57. res = []
  58. pdf_parser = None
  59. sections = []
  60. if re.search(r"\.docx?$", filename, re.IGNORECASE):
  61. callback(0.1, "Start to parse.")
  62. for txt in laws.Docx()(filename, binary):
  63. sections.append((txt, ""))
  64. callback(0.8, "Finish parsing.")
  65. elif re.search(r"\.pdf$", filename, re.IGNORECASE):
  66. pdf_parser = Pdf()
  67. sections, tbls = pdf_parser(filename if not binary else binary,
  68. from_page=from_page, to_page=to_page, callback=callback)
  69. res = tokenize_table(tbls, doc, eng)
  70. elif re.search(r"\.xlsx?$", filename, re.IGNORECASE):
  71. callback(0.1, "Start to parse.")
  72. excel_parser = ExcelParser()
  73. sections = [(excel_parser.html(binary), "")]
  74. elif re.search(r"\.txt$", filename, re.IGNORECASE):
  75. callback(0.1, "Start to parse.")
  76. txt = ""
  77. if binary:
  78. txt = binary.decode("utf-8")
  79. else:
  80. with open(filename, "r") as f:
  81. while True:
  82. l = f.readline()
  83. if not l: break
  84. txt += l
  85. sections = txt.split("\n")
  86. sections = [(l, "") for l in sections if l]
  87. callback(0.8, "Finish parsing.")
  88. else:
  89. raise NotImplementedError("file type not supported yet(docx, pdf, txt supported)")
  90. parser_config = kwargs.get("parser_config", {"chunk_token_num": 128, "delimiter": "\n!?。;!?"})
  91. cks = naive_merge(sections, parser_config.get("chunk_token_num", 128), parser_config.get("delimiter", "\n!?。;!?"))
  92. # wrap up to es documents
  93. for ck in cks:
  94. if len(ck.strip()) == 0:continue
  95. print("--", ck)
  96. d = copy.deepcopy(doc)
  97. if pdf_parser:
  98. try:
  99. d["image"], poss = pdf_parser.crop(ck, need_position=True)
  100. except Exception as e:
  101. continue
  102. add_positions(d, poss)
  103. ck = pdf_parser.remove_tag(ck)
  104. tokenize(d, ck, eng)
  105. res.append(d)
  106. return res
  107. if __name__ == "__main__":
  108. import sys
  109. def dummy(prog=None, msg=""):
  110. pass
  111. chunk(sys.argv[1], from_page=0, to_page=10, callback=dummy)