From ecbac6bbabc5587fdc397724290e0bb9a667b115 Mon Sep 17 00:00:00 2001 From: mannaandpoem <1580466765@qq.com> Date: Wed, 28 Feb 2024 15:29:41 +0800 Subject: [PATCH] update prompt of ocr example --- examples/mi/ocr_receipt.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/examples/mi/ocr_receipt.py b/examples/mi/ocr_receipt.py index ffa5cff05..f394cccec 100644 --- a/examples/mi/ocr_receipt.py +++ b/examples/mi/ocr_receipt.py @@ -6,7 +6,9 @@ async def main(): image_path = "image.jpg" language = "English" requirement = f"""This is a {language} receipt image. - Your goal is to perform OCR on images using PaddleOCR, then extract the total amount from ocr text results, and finally save as table. Image path: {image_path}. + Your goal is to perform OCR on images using PaddleOCR, output text content from the OCR results and discard + coordinates and confidence levels, then recognize the total amount from ocr text content, and finally save as table. + Image path: {image_path}. NOTE: The environments for Paddle and PaddleOCR are all ready and has been fully installed.""" mi = Interpreter()