diff --git a/ui/enriching/generative-ocr.mdx b/ui/enriching/generative-ocr.mdx index 93bbd496..11a5da92 100644 --- a/ui/enriching/generative-ocr.mdx +++ b/ui/enriching/generative-ocr.mdx @@ -16,9 +16,9 @@ Before (vertical watermarked text, represented incorrectly): ```json { - "...", "...", + "...": "...", "text": "3 2 0 2 t c O 9 2 ] V C . s c [ 2 v 9 0 8 6 1 . 0 1 3 2 : v i X r", - "...", "..." + "...": "..." } ``` @@ -26,9 +26,9 @@ After (vertical watermarked text, now represented correctly from the original co ```json { - "...", "...", + "...": "...", "text": "arXiv:2310.16809v2 [cs.CV] 29 Oct 2023", - "...", "..." + "...": "..." } ``` @@ -40,9 +40,9 @@ Before (hyperlink, represented incorrectly): ```json { - "...", "...", + "...": "...", "text": "con/Yuliang-Liu/MultinodalOCR|", - "...", "..." + "...": "..." } ``` @@ -50,9 +50,9 @@ After (hyperlink, now represented correctly from the original content): ```json { - "...", "...", + "...": "...", "text": "https://github.com/Yuliang-Liu/MultimodalOCR", - "...", "..." + "...": "..." } ``` @@ -64,9 +64,9 @@ Before (Chinese characters, represented incorrectly): ```json { - "...", "...", + "...": "...", "text": "GT SHE GPT4-V: EHES", - "...", "..." + "...": "..." } ``` @@ -74,9 +74,9 @@ After (Chinese characters, now represented correctly from the original content, ```json { - "...", "...", + "...": "...", "text": "GT : \u91d1\u724c\u70e7\u814a GPT4-V: \u6587\u9759\u5019\u9e1f", - "...", "..." + "...": "..." } ```