Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions ui/enriching/generative-ocr.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,19 @@ 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",
"...", "..."
"...": "..."
}
```

After (vertical watermarked text, now represented correctly from the original content):

```json
{
"...", "...",
"...": "...",
"text": "arXiv:2310.16809v2 [cs.CV] 29 Oct 2023",
"...", "..."
"...": "..."
}
```

Expand All @@ -40,19 +40,19 @@ Before (hyperlink, represented incorrectly):

```json
{
"...", "...",
"...": "...",
"text": "con/Yuliang-Liu/MultinodalOCR|",
"...", "..."
"...": "..."
}
```

After (hyperlink, now represented correctly from the original content):

```json
{
"...", "...",
"...": "...",
"text": "https://github.com/Yuliang-Liu/MultimodalOCR",
"...", "..."
"...": "..."
}
```

Expand All @@ -64,19 +64,19 @@ Before (Chinese characters, represented incorrectly):

```json
{
"...", "...",
"...": "...",
"text": "GT SHE GPT4-V: EHES",
"...", "..."
"...": "..."
}
```

After (Chinese characters, now represented correctly from the original content, expressed as Unicode):

```json
{
"...", "...",
"...": "...",
"text": "GT : \u91d1\u724c\u70e7\u814a GPT4-V: \u6587\u9759\u5019\u9e1f",
"...", "..."
"...": "..."
}
```

Expand Down