Commit db4edf28 authored by myhloli's avatar myhloli
Browse files

fix: enhance memory cleaning condition to check model list length

parent 12b64a0e
......@@ -236,7 +236,7 @@ def result_to_middle_json(model_list, images_list, pdf_doc, image_writer, lang=N
"""清理内存"""
pdf_doc.close()
if os.getenv('MINERU_DONOT_CLEAN_MEM') is None:
if os.getenv('MINERU_DONOT_CLEAN_MEM') is None and len(model_list) > 10:
clean_memory(get_device())
return middle_json
......
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