zuminghuang commited on
Commit
5376261
·
verified ·
1 Parent(s): 2dd9e57

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +44 -3
README.md CHANGED
@@ -1,3 +1,44 @@
1
- ---
2
- license: cc-by-nc-sa-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Overview
2
+ Infinity-Doc-55K is a high-quality diverse full-text parsing dataset, comprising 55,066 real-world and synthetic scanned documents. The dataset features rich layout variations and comprehensive structural annotations, enabling robust training of document parsing models. Additionally, this dataset encompasses a broad spectrum of document types, including financial reports, medical reports, academic reports, books, magazines, web pages, and synthetic documents.
3
+
4
+ ![Image](assets/dataset_illustration.png)
5
+
6
+ # Data Construction Pipeline
7
+ To construct a comprehensive dataset for document parsing, we integrate both real-world and synthetic data generation pipelines. Our real-world data pipeline collects diverse scanned documents from various practical domains (such as financial reports, medical records, and academic papers), employing a multi-expert strategy with cross-validation to generate reliable pseudo-ground-truth annotations for structural elements like text, tables, and formulas. Complementing this, our synthetic data pipeline programmatically creates a wide array of documents by injecting content from sources like Wikipedia into predefined HTML layouts, rendering them into scanned formats, and extracting precise ground-truth annotations directly from the original HTML. This dual approach yields a rich, diverse, and cost-effective dataset with accurate and well-aligned supervision, effectively overcoming common issues of imprecise or inconsistent labeling found in other datasets and enabling robust training for end-to-end document parsing models.
8
+
9
+ ![Image](assets/data_construction_pipeline.png)
10
+
11
+ # Data Statistics
12
+ | Document Type | Samples Number |
13
+ | --- | --- |
14
+ | Synthetic Documents | 6546 |
15
+ | Financial Reports | 14207 |
16
+ | Medical Reports | 5000 |
17
+ | Academic Papers | 8856 |
18
+ | Books | 12488 |
19
+ | Magazines | 2969 |
20
+ | Web Pages | 5000 |
21
+ | All | 55066 |
22
+
23
+ # Data Format
24
+ ```json
25
+ {
26
+ "images": ["path/to/image"],
27
+ "conversations": [
28
+ {
29
+ "from": "human",
30
+ "value": "Please transform the document's contents into Markdown format."
31
+ },
32
+ {
33
+ "from": "gpt",
34
+ "value": "ground_truth"
35
+ ],
36
+ "attributes": {
37
+ "document_type": "document_type",
38
+ "task": "task"
39
+ }
40
+ }
41
+ ```
42
+
43
+ # License
44
+ This dataset is licensed under cc-by-nc-sa-4.0.