Update readme
Browse files
README.md
CHANGED
|
@@ -1,3 +1,25 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: mit
|
| 3 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
---
|
| 4 |
+
|
| 5 |
+
The data is composed of 5 json files. Each file is an array of these objects:
|
| 6 |
+
```json
|
| 7 |
+
{
|
| 8 |
+
"pageId": "clzqsz64f000jj8geg0ndbxy1",
|
| 9 |
+
"url": "https://assets.usul.ai/ocr-pages/clzqsz64f000jj8geg0ndbxy1.png",
|
| 10 |
+
"pdfPageNumber": 2387,
|
| 11 |
+
"ocrOutput": "",
|
| 12 |
+
"reviewedContent": null,
|
| 13 |
+
"reviewedFootnotes": null,
|
| 14 |
+
"reviewedPageNumber": null
|
| 15 |
+
}
|
| 16 |
+
```
|
| 17 |
+
|
| 18 |
+
- `url`: the image url of the page
|
| 19 |
+
- `ocrOutput`: the raw output from the ocr model (we use azure)
|
| 20 |
+
- `reviewedContent`: the page content after review (formatted in html)
|
| 21 |
+
- `reviewedFootnotes`: the footnotes in the page (formatted in html)
|
| 22 |
+
- `reviewedPageNumber`: the reviewed page number of the page
|
| 23 |
+
|
| 24 |
+
Note: beware that there are some empty pages where the `ocrOutput` equals `""` and `reviewedContent`, `reviewedFootnotes`, `reviewedPageNumber` are equal to `null`
|
| 25 |
+
|